cmake_minimum_required
命令的documentation说:
The FATAL_ERROR option is accepted but ignored by CMake 2.6 and higher.
It should be specified so CMake versions 2.4 and lower fail with an error
instead of just a warning.
但是,它没有说明FATAL_ERROR
的有效选项是什么 - 我错过了一些令人目眩的明显事物吗?
答案 0 :(得分:0)
在FATAL_ERROR
的上下文中,cmake_minimum_required
不需要其他参数。
你这样使用它:
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
或
cmake_minimum_required(VERSION 2.8.11.1 FATAL_ERROR)
在message
的上下文中,您执行传递一个额外的参数:
message(FATAL_ERROR "My message...")