diff options
author | Horst Kronstorfer <mabuze@aon.at> | 2016-02-08 11:55:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-08 14:52:56 (GMT) |
commit | a3b91d164043bdef713c0490f3069c00851ccf13 (patch) | |
tree | 07105e61bdf5da55b4b64e1686abc3b744d613ba /Help | |
parent | d8c90800174b6b5256fea5ea0813977c608c5ff0 (diff) | |
download | CMake-a3b91d164043bdef713c0490f3069c00851ccf13.zip CMake-a3b91d164043bdef713c0490f3069c00851ccf13.tar.gz CMake-a3b91d164043bdef713c0490f3069c00851ccf13.tar.bz2 |
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.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/cmake_minimum_required.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/cmake_minimum_required.rst b/Help/command/cmake_minimum_required.rst index 8573218..dc65a9e 100644 --- a/Help/command/cmake_minimum_required.rst +++ b/Help/command/cmake_minimum_required.rst @@ -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]) If the current version of CMake is lower than that required it will |