ENH: Clarify documentation of link_directories command for bug#6199.

This commit is contained in:
Brad King 2007-12-23 19:03:22 -05:00
parent 430296dc96
commit 611d1119d1

View File

@ -54,7 +54,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Specify directories in which to search for libraries."; return "Specify directories in which the linker will look for libraries.";
} }
/** /**
@ -64,7 +64,8 @@ public:
{ {
return return
" link_directories(directory1 directory2 ...)\n" " link_directories(directory1 directory2 ...)\n"
"Specify the paths in which the linker should search for libraries."; "Specify the paths in which the linker should search for libraries. "
"The command will apply only to targets created after it is called.";
} }
cmTypeMacro(cmLinkDirectoriesCommand, cmCommand); cmTypeMacro(cmLinkDirectoriesCommand, cmCommand);