summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-10-17 19:40:51 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-18 16:52:02 (GMT)
commit620b0e92fce77ccdfc2f35485e31dcdf756962d5 (patch)
tree26298684202adae327cc13c5b765346fff0d581d /Help
parent2d4ce8054900216f554dede6dec843741e8c97f5 (diff)
downloadCMake-620b0e92fce77ccdfc2f35485e31dcdf756962d5.zip
CMake-620b0e92fce77ccdfc2f35485e31dcdf756962d5.tar.gz
CMake-620b0e92fce77ccdfc2f35485e31dcdf756962d5.tar.bz2
target_link_libraries(): Fix code snippet in documentation.
The porting script seems to have made a mistake here.
Diffstat (limited to 'Help')
-rw-r--r--Help/command/target_link_libraries.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/command/target_link_libraries.rst b/Help/command/target_link_libraries.rst
index a1e3e22..41265fd 100644
--- a/Help/command/target_link_libraries.rst
+++ b/Help/command/target_link_libraries.rst
@@ -59,10 +59,11 @@ for <target>:
If an <item> is a library in a Mac OX framework, the Headers directory
of the framework will also be processed as a "usage requirement".
This has the same effect as passing the framework directory as an
-include directory. target_link_libraries(<target>
+include directory.
::
+ target_link_libraries(<target>
<PRIVATE|PUBLIC|INTERFACE> <lib> ...
[<PRIVATE|PUBLIC|INTERFACE> <lib> ... ] ...])