diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-26 20:22:53 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-26 20:22:53 (GMT) |
commit | 41e1270413b18272bc73a8b25150aad4c7913563 (patch) | |
tree | 97d507f6296c78e5aaf17e1858e610cf95c46ba7 /Source/cmLinkLibrariesCommand.h | |
parent | 888e47ddb4215659e76673af4f18aba865ccc4b8 (diff) | |
download | CMake-41e1270413b18272bc73a8b25150aad4c7913563.zip CMake-41e1270413b18272bc73a8b25150aad4c7913563.tar.gz CMake-41e1270413b18272bc73a8b25150aad4c7913563.tar.bz2 |
support for debug and opt libraries
Diffstat (limited to 'Source/cmLinkLibrariesCommand.h')
-rw-r--r-- | Source/cmLinkLibrariesCommand.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmLinkLibrariesCommand.h b/Source/cmLinkLibrariesCommand.h index 5f01d52..3ef25f6 100644 --- a/Source/cmLinkLibrariesCommand.h +++ b/Source/cmLinkLibrariesCommand.h @@ -70,11 +70,14 @@ public: virtual const char* GetFullDocumentation() { return - "LINK_LIBRARIES(library1 library2)\n" + "LINK_LIBRARIES(library1 <debug | optimized> library2 ...)\n" "Specify a list of libraries to be linked into\n" "executables or shared objects. This command is passed\n" "down to all other commands. The library name should be\n" - "the same as the name used in the LIBRARY(library) command."; + "the same as the name used in the LIBRARY(library) command.\n" + "The debug and optimized strings may be used to indicate that\n" + "the next library listed is to be used only for that specific\n" + "type of build"; } cmTypeMacro(cmLinkLibrariesCommand, cmCommand); |