ENH: updated handling of debug and optimized target link libraries

This commit is contained in:
Ken Martin
2006-11-29 11:00:17 -05:00
parent e9a80cd8a9
commit daa6d2bc04
5 changed files with 113 additions and 136 deletions

View File

@@ -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);