从Eclipse中的github导入cmake项目

时间:2016-07-02 16:57:34

标签: eclipse github cmake eclipse-cdt

我正在尝试将项目grive2导入到eclipse中。我认为最简单的方法是在git支持中使用Eclipses的构建。 这是使用File-> Import-> Git-> Projects From GIT进行的 然后我选择Clone URI并输入URI。设置目标路径后,我显示了以下对话框:

enter image description here

我为此选择了Import using the New Project wizard选项(我不知道这是否正确!? 然后在新向导中,我选择带有现有代码的Makefile项目。

enter image description here

在下一个窗口中,我必须设置项目和编译器的路径:

enter image description here

在此步骤之后,项目进入右侧项目的日食树中。 现在单击构建(栏中的小锤子)时,我收到输出消息

 18:55:32 **** Incremental Build of configuration Default for project    
 grive2 ****
 make all 
 make: *** No rule to make target 'all'.  Stop.

 18:55:32 Build Finished (took 73ms)

我还需要做些什么才能让它构建和编译?

2 个答案:

答案 0 :(得分:2)

自述git存储库中,自述文件包含以下指令:

mkdir build
cd build
cmake ..
make -j4
sudo make install

您需要先运行cmake。它会做它需要做的事情,并为你提供一个make文件来运行。你不需要eclipse来构建和编译!

答案 1 :(得分:2)

eclipse市场有一个插件可以为你生成makefile和build目录:cmake4eclipse