在eclipse中包含外部makefile的多个子目录

时间:2017-02-28 19:22:28

标签: c++ eclipse makefile

我想在CDT eclipse中调试一个C ++项目。我的项目结构是:

*Parent directory|
                |
                ----- SubDir 1
                |        |   
                |        |
                |        |
                |        |
                |       --- *.h and *.cpp  (header files and c++ source code)
                |       
                |
                |
                ----- SubDir 2
                        |
                        |
                        |
                        --- *.h and *.cpp  (header files and c+= source code)*

目前我有一个shell脚本可以编译所有内容并生成可执行文件.shell脚本具有以下命令。它可以通过命令行正常工作。

g++ -I SubDir1 -I SubDir2 Main.cpp SubDir1/*.cpp SubDir2/*.cpp -o exec

-I以某种方式不适用于eclipse。有一种方法我可以实现这个eclipse。如何在外部或目标makefile中包含多个子目录。

0 个答案:

没有答案