diff options
author | Brad King <brad.king@kitware.com> | 2016-02-08 15:33:02 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-02-08 15:33:02 (GMT) |
commit | 2619317c66ece81a9103731736ed7c8718e45666 (patch) | |
tree | cc6bdf2f5991c01912ae8612ed9abb11c5bbf8cf /Help/manual | |
parent | c1ee5166adcbe0aeb25b6cd368bd2917a70b22b4 (diff) | |
parent | a3b91d164043bdef713c0490f3069c00851ccf13 (diff) | |
download | CMake-2619317c66ece81a9103731736ed7c8718e45666.zip CMake-2619317c66ece81a9103731736ed7c8718e45666.tar.gz CMake-2619317c66ece81a9103731736ed7c8718e45666.tar.bz2 |
Merge topic 'fix-doc-typos'
a3b91d16 Help: Fix command specification for cmake_minimum_required
d8c90800 Help: Fix mistake in cmake-buildsystem(7) example
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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" |