how to debug source code from Google code repository

后端 未结 2 1520
暗喜
暗喜 2021-02-06 16:49

I want to debug the following source code from google code repository,

http://code.google.com/p/rx/

My problem is, I am unable to find a suitab

2条回答
  •  轮回少年
    2021-02-06 17:30

    You can create a dummy makefile :

    all:
            g++ code_dir/*/*.?pp -o fake
    

    and then import project using Makefiles. This is possible to do for kdevelop and eclipse (not sure for other IDEs).

    Take a note that the above makefile imports all files with a *.?pp template from all directories in the code_dir directory.

提交回复
热议问题