diff options
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); |