summaryrefslogtreecommitdiffstats
path: root/Help/manual
diff options
context:
space:
mode:
authorErik Sjölund <erik.sjolund@gmail.com>2015-06-20 06:42:07 (GMT)
committerBrad King <brad.king@kitware.com>2015-06-22 13:02:55 (GMT)
commit17c5152170992e84d95a25df37d0aec7949f54c5 (patch)
tree557831cafcb06deab74439fc5e3a26a95eadfb19 /Help/manual
parenta6916a6c6e397bda8b381f65dbfc59d3c52f8525 (diff)
downloadCMake-17c5152170992e84d95a25df37d0aec7949f54c5.zip
CMake-17c5152170992e84d95a25df37d0aec7949f54c5.tar.gz
CMake-17c5152170992e84d95a25df37d0aec7949f54c5.tar.bz2
Help: Fix a typo in cmake-buildsystem(7) manual
Add the property name INTERFACE_INCLUDE_DIRECTORIES that was missing from a set_property command.
Diffstat (limited to 'Help/manual')
-rw-r--r--Help/manual/cmake-buildsystem.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst
index c456590..aefdb71 100644
--- a/Help/manual/cmake-buildsystem.7.rst
+++ b/Help/manual/cmake-buildsystem.7.rst
@@ -632,7 +632,7 @@ may be enabled, with an equivalent effect to:
.. code-block:: cmake
- set_property(TARGET tgt APPEND PROPERTY
+ set_property(TARGET tgt APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR};${CMAKE_CURRENT_BINARY_DIR}>
)