我已经使用本教程中的步骤将我之前使用 cmake 构建的 c++ 项目移动到 eclipse 中。http://www.ibm.com/developerworks/aix/library/au-unix-eclipse/index.html。我正在处理项目的大部分相同部分,即演示文件夹。在 Eclipse 之前,我在终端中使用了典型的 make 和 ./demo 命令。现在我设法使用以下 build.xml 文件内容在 IDE 中构建和运行项目:
<?xml version="1.0"?>
<project name="unzip" default="make">
<description>
Ant adaptor for the demo Makefile.
</description>
<target name="make" description="build demo">
<exec executable="make">
</exec>
</target>
<target name="demoExec" description="run demo">
<exec executable="./demo">
</exec>
</target>
</project>
但是现在事情正在外部运行,这两个命令与一些可执行文件相关联。我切换到 Eclipse 主要是出于调试原因,但当前的配置似乎不允许这样做。我怎样才能让东西在 Eclipse 中本地运行,而不是绑定到外部工具,以便我可以在我的代码等中设置断点?