cmake的四个命令:add_compile_options.add_definitions.target_compile_definitions.build_command add_compile_options() Adds options to the compilation of source files. 增加源文件的编译选项. add_compile_options(<option> ...) Adds options to the compiler command line fo…
本节要讨论的是cmake的两个命令: option 和 configure_file option 选项,让你可以根据选项值进行条件编译. configure_file 配置文件,让你可以在代码文件中使用CMake中定义的的变量 * option Provides an option that the user can optionally select. option 提供一个用户可以任选的选项.语法如下 option(<option_variable> "help string…