如何为 CMake 编写 CMakeLists.txt 脚本,以便生成器文件中的目标使用生成器命令中提供的额外标志?例如,
命令:
cmake -G "Unix Makefiles"
使 MY_FLAGS="-Dfoo -Bar"
CMakeLists.txt:
add_executable ( MyApp main.cpp )
# How to reference MY_FLAGS in compile, link commands for MyApp target?
如何为 CMake 编写 CMakeLists.txt 脚本,以便生成器文件中的目标使用生成器命令中提供的额外标志?例如,
命令:
cmake -G "Unix Makefiles"
使 MY_FLAGS="-Dfoo -Bar"
CMakeLists.txt:
add_executable ( MyApp main.cpp )
# How to reference MY_FLAGS in compile, link commands for MyApp target?