5

我只是想启动并运行一个可以运行一些基本命令行命令的基本 CMake 示例。我已经研究了一段时间,但我没有任何运气。我完全用错了吗?任何和所有输入将不胜感激。

cmake_minimum_required(VERSION 3.0)

add_custom_command(
  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/test.txt
  COMMAND echo "Hello world"
  COMMENT "This is a comment. But it's not printed during the build?"
)

return() 

编辑:使用:

add_custom_target(run ALL DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/test.txt)

正如其他帖子中所建议的那样,也不起作用。

4

0 回答 0