diff options
author | Brad King <brad.king@kitware.com> | 2016-02-08 15:35:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-08 15:35:45 (GMT) |
commit | 024c4eac0502e4153c9eb44a2f5bcabf48c4d00d (patch) | |
tree | 798098870c6aadf2efd173e1ecb0dcad0bb5ee13 /Help | |
parent | 52a81d67f1a462143147e2282c8763b5b37060ae (diff) | |
parent | a3b91d164043bdef713c0490f3069c00851ccf13 (diff) | |
download | CMake-024c4eac0502e4153c9eb44a2f5bcabf48c4d00d.zip CMake-024c4eac0502e4153c9eb44a2f5bcabf48c4d00d.tar.gz CMake-024c4eac0502e4153c9eb44a2f5bcabf48c4d00d.tar.bz2 |
Merge branch 'fix-doc-typos' into release
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/cmake_minimum_required.rst | 2 | ||||
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index 4a04f31..9004bb2 100644 --- a/Help/manual/cmake-buildsystem.7.rst +++ b/Help/manual/cmake-buildsystem.7.rst @@ -427,7 +427,7 @@ specified will be calculated: ) add_library(lib1Version3 SHARED lib1_v3.cpp) - set_property(TARGET lib1Version2 PROPERTY INTERFACE_CONTAINER_SIZE_REQUIRED 1000) + set_property(TARGET lib1Version3 PROPERTY INTERFACE_CONTAINER_SIZE_REQUIRED 1000) add_executable(exe1 exe1.cpp) # CONTAINER_SIZE_REQUIRED will be "200" |