Help: Fix a typo in cmake-buildsystem(7) manual

Add the property name INTERFACE_INCLUDE_DIRECTORIES that was missing
from a set_property command.
This commit is contained in:
Erik Sjölund 2015-06-20 08:42:07 +02:00 committed by Brad King
parent a6916a6c6e
commit 17c5152170
1 changed files with 1 additions and 1 deletions

View File

@ -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}>
)