我想使用Clion
调试使用外部makefile创建的可执行文件
我看到我可以在Run/Debug Configurations --> Executable
中选择另一个可执行文件,但它会自动运行我CMakeLists
,我不想这样做(导致它失败)。
我知道Clion
目前不支持“使用现有makefile导入项目”。
有办法吗?
答案 0 :(得分:3)
Cmake
' add_custom_command()
和add_custom_target()
我致电makefile
Clion
Run/Debug Configuration --> Executable
中,我从makefile中选择了已编译的可执行文件。 ---编辑---
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)