如何使用Clion调试外部可执行文件

时间:2015-03-29 11:54:11

标签: c++ debugging ide clion

我想使用Clion调试使用外部makefile创建的可执行文件 我看到我可以在Run/Debug Configurations --> Executable中选择另一个可执行文件,但它会自动运行我CMakeLists,我不想这样做(导致它失败)。

我知道Clion目前不支持“使用现有makefile导入项目”。

有办法吗?

1 个答案:

答案 0 :(得分:3)

  1. 使用Cmake' add_custom_command()add_custom_target()我致电makefile
  2. Clion Run/Debug Configuration --> Executable中,我从makefile中选择了已编译的可执行文件。
  3. ---编辑---
    1.示例

    add_custom_command(OUTPUT app_run.txt
        COMMAND /bin/echo "Not building!"
        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
    add_custom_target(app_run ALL
        DEPENDS app_run.txt)