我正在研究一个在Linux上运行eclipse Indigo + CDT的C ++项目
它由一个库的项目和一个包含该库的单元测试的项目组成 显然第二个项目取决于第一个项目 两个项目都使用外部构建器
但是当我修改第一个项目的标题时,它不会重建测试项目。我无法做到这一点......它只是重新链接第二个项目,即使标题包含在测试项目中。这非常烦人,因为我在使用库时经常有工作版本,然后在某些时候我进行完全重建,我看到了大量错误,我在30分钟前做过的事情!
CDT Global Build Console的示例输出:
**** Build of configuration Debug for project libxxx ****
make -j all
Building file: ../foo.cpp
Invoking: GCC C++ Compiler
ccache g++ -I"/home/foke/workspaces/cpp/libxxx/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"foo.d" -MT"foo.d" -o "foo.o" "../foo.cpp"
Finished building: ../foo.cpp
Building target: libxxx.a
Invoking: GCC Archiver
ar -r "libxxx.a" ./foo.o ./src/yyy.o ./src/detail/zzz.o
ar: creating libxxx.a
Finished building target: libxxx.a
**** Build Finished ****
**** Build of configuration Debug for project libxxx_tests ****
make -k -j all
Building target: libxxx_tests
Invoking: Cross G++ Linker
g++ -L"/home/foke/workspaces/cpp/libxxx/Debug" -o "libxxx_tests" ./main.o ./aaa.o ./tests/bbb.o ./tests/ccc.o ./tests/ddd.o -lboost_unit_test_framework -lxxx
Finished building target: libxxx_tests
**** Build Finished ****
答案 0 :(得分:4)
如果您已经习惯了最新版本的MS Visual Studio,那么您应该清理桌面上的空间并用巨大的“X”标记它 - 这绝对是你的拳头,甚至是你的头脑会在挫折中砰砰作响的地方使用eclipse / CDT时。
Eclipse拥有自己的依赖机制,几乎什么也没做,但幸运的是CDT模块有自己的依赖机制,它试图做你想要的。要设置项目依赖项,请转到:
Project-->Properties-->C/C++ General-->Paths and Symbols-->References
因此,在您的示例中,您将转到“libxxx_tests”的项目属性,并选择“libxxx.a”作为依赖项。
请注意,您也可以使用此页面设置库顺序,这可能是一个重要步骤,具体取决于项目的复杂程度。