Help: Fix command specification for cmake_minimum_required
Implementation indicates that at least two components of VERSION must be specified (see Source/cmCMakeMinimumRequired.cxx.) Therefore the minor version is not optional.
This commit is contained in:
parent
d8c9080017
commit
a3b91d1640
|
@ -5,7 +5,7 @@ Set the minimum required version of cmake for a project.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
cmake_minimum_required(VERSION major[.minor[.patch[.tweak]]]
|
cmake_minimum_required(VERSION major.minor[.patch[.tweak]]
|
||||||
[FATAL_ERROR])
|
[FATAL_ERROR])
|
||||||
|
|
||||||
If the current version of CMake is lower than that required it will
|
If the current version of CMake is lower than that required it will
|
||||||
|
|
Loading…
Reference in New Issue