diff options
author | Brad King <brad.king@kitware.com> | 2009-02-02 14:42:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-02 14:42:23 (GMT) |
commit | eea054d82c13430bff4eba800f02a73396b73af2 (patch) | |
tree | 99d2a164545d0b0c1b088cb7ee26ecba3a47f73a /Source/cmTargetLinkLibrariesCommand.h | |
parent | 367101b02cd6051ebaf3e7459eded4d4feedeb19 (diff) | |
download | CMake-eea054d82c13430bff4eba800f02a73396b73af2.zip CMake-eea054d82c13430bff4eba800f02a73396b73af2.tar.gz CMake-eea054d82c13430bff4eba800f02a73396b73af2.tar.bz2 |
ENH: Clarify target_link_libraries docs
The target_link_libraries command supports flags as well as libraries.
This makes the support explicit in the documentation.
Diffstat (limited to 'Source/cmTargetLinkLibrariesCommand.h')
-rw-r--r-- | Source/cmTargetLinkLibrariesCommand.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.h b/Source/cmTargetLinkLibrariesCommand.h index e18ed4d..d4c0ec2 100644 --- a/Source/cmTargetLinkLibrariesCommand.h +++ b/Source/cmTargetLinkLibrariesCommand.h @@ -64,12 +64,14 @@ public: virtual const char* GetFullDocumentation() { return - " target_link_libraries(<target> [lib1 [lib2 [...]]]\n" - " [[debug|optimized|general] <lib>] ...)\n" - "Specify a list of libraries to be linked into the specified target. " - "If any library name matches that of a target in the current project " + " target_link_libraries(<target> [item1 [item2 [...]]]\n" + " [[debug|optimized|general] <item>] ...)\n" + "Specify libraries or flags to use when linking a given target. " + "If a library name matches that of another target in the project " "a dependency will automatically be added in the build system to make " - "sure the library being linked is up-to-date before the target links." + "sure the library being linked is up-to-date before the target links. " + "Item names starting with '-', but not '-l' or '-framework', are " + "treated as linker flags." "\n" "A \"debug\", \"optimized\", or \"general\" keyword indicates that " "the library immediately following it is to be used only for the " |