summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Sjölund <erik.sjolund@gmail.com>2015-06-20 08:42:07 +0200
committerBrad King <brad.king@kitware.com>2015-06-22 09:02:55 -0400
commit17c5152170992e84d95a25df37d0aec7949f54c5 (patch)
tree557831cafcb06deab74439fc5e3a26a95eadfb19
parenta6916a6c6e397bda8b381f65dbfc59d3c52f8525 (diff)
downloadcmake-17c5152170992e84d95a25df37d0aec7949f54c5.tar.gz
Help: Fix a typo in cmake-buildsystem(7) manual
Add the property name INTERFACE_INCLUDE_DIRECTORIES that was missing from a set_property command.
-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 c45659079b..aefdb7144b 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}>
)