summaryrefslogtreecommitdiffstats
path: root/Source/cmTargetLinkLibrariesCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-11-29 16:00:17 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-11-29 16:00:17 (GMT)
commitdaa6d2bc04ff8631559ffcb5141f197cac33e755 (patch)
tree34559ea255e91d274cfa9d38ed7be7f01a906546 /Source/cmTargetLinkLibrariesCommand.h
parente9a80cd8a90c3309d32df58b27dcc6e061f5928f (diff)
downloadCMake-daa6d2bc04ff8631559ffcb5141f197cac33e755.zip
CMake-daa6d2bc04ff8631559ffcb5141f197cac33e755.tar.gz
CMake-daa6d2bc04ff8631559ffcb5141f197cac33e755.tar.bz2
ENH: updated handling of debug and optimized target link libraries
Diffstat (limited to 'Source/cmTargetLinkLibrariesCommand.h')
-rw-r--r--Source/cmTargetLinkLibrariesCommand.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.h b/Source/cmTargetLinkLibrariesCommand.h
index 8191ec8..4d08c33 100644
--- a/Source/cmTargetLinkLibrariesCommand.h
+++ b/Source/cmTargetLinkLibrariesCommand.h
@@ -64,12 +64,13 @@ public:
{
return
" TARGET_LINK_LIBRARIES(target library1\n"
- " <debug | optimized> library2\n"
+ " <debug | optimized | general> library2\n"
" ...)\n"
"Specify a list of libraries to be linked into the specified target. "
"The debug and optimized strings may be used to indicate that "
"the next library listed is to be used only for that specific "
- "type of build";
+ "type of build. general indicates it is used for all build types "
+ "and is assumed if not specified.";
}
cmTypeMacro(cmTargetLinkLibrariesCommand, cmCommand);