0

该命令的文档cmake_minimum_required说:

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- 我是否遗漏了一些非常明显的东西?

4

1 回答 1

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...")
于 2013-06-07T22:44:40.990 回答