ENH: Patch from Alex to make deprecated command documentation more consistent.

This commit is contained in:
Brad King 2007-01-24 13:45:42 -05:00
parent 03a46e0381
commit f71ad851d8
11 changed files with 16 additions and 22 deletions

View File

@ -60,8 +60,7 @@ public:
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return return
"Run and executable program during the processing of the CMakeList.txt" "Deprecated. Use the EXECUTE_PROCESS() command instead.";
" file.";
} }
/** /**
@ -70,6 +69,8 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"Run and executable program during the processing of the CMakeList.txt"
" file.\n"
" EXEC_PROGRAM(Executable [directory in which to run]\n" " EXEC_PROGRAM(Executable [directory in which to run]\n"
" [ARGS <arguments to executable>]\n" " [ARGS <arguments to executable>]\n"
" [OUTPUT_VARIABLE <var>]\n" " [OUTPUT_VARIABLE <var>]\n"
@ -83,8 +84,6 @@ public:
"To capture the return value of the execution, provide a RETURN_VALUE. " "To capture the return value of the execution, provide a RETURN_VALUE. "
"If OUTPUT_VARIABLE is specified, then no output will go to the " "If OUTPUT_VARIABLE is specified, then no output will go to the "
"stdout/stderr of the console running cmake.\n" "stdout/stderr of the console running cmake.\n"
"The EXECUTE_PROCESS command is a newer more powerful version of "
"EXEC_PROGRAM, but the old command has been kept for compatibility."
; ;
} }

View File

@ -52,7 +52,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Old installation command. Use the INSTALL command."; return "Deprecated. Use the INSTALL(FILES ) command instead.";
} }
/** /**

View File

@ -52,7 +52,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Old installation command. Use the INSTALL command."; return "Deprecated. Use the INSTALL(PROGRAMS ) command instead.";
} }
/** /**

View File

@ -53,7 +53,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Old installation command. Use the INSTALL command."; return "Deprecated. Use the INSTALL(TARGETS ) command instead.";
} }
/** /**

View File

@ -53,7 +53,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Link libraries to all targets added later."; return "Deprecated. Use the TARGET_LINK_LIBRARIES() command instead.";
} }
/** /**
@ -62,10 +62,8 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"Link libraries to all targets added later.\n"
" LINK_LIBRARIES(library1 <debug | optimized> library2 ...)\n" " LINK_LIBRARIES(library1 <debug | optimized> library2 ...)\n"
"This is an old CMake command for linking libraries. Use "
"TARGET_LINK_LIBRARIES unless you have a good reason for every target "
"to link to the same set of libraries.\n"
"Specify a list of libraries to be linked into " "Specify a list of libraries to be linked into "
"any following targets (typically added with the ADD_EXECUTABLE " "any following targets (typically added with the ADD_EXECUTABLE "
"or ADD_LIBRARY calls). This command is passed " "or ADD_LIBRARY calls). This command is passed "

View File

@ -60,7 +60,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Old directory creation command. Use the FILE command."; return "Deprecated. Use the FILE(MAKE_DIRECTORY ) command instead.";
} }
/** /**
@ -69,9 +69,6 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"This command has been superceded by the FILE(MAKE_DIRECTORY ...) "
"command. "
"It is provided for compatibility with older CMake code.\n"
" MAKE_DIRECTORY(directory)\n" " MAKE_DIRECTORY(directory)\n"
"Creates the specified directory. Full paths should be given. Any " "Creates the specified directory. Full paths should be given. Any "
"parent directories that do not exist will also be created. Use with " "parent directories that do not exist will also be created. Use with "

View File

@ -56,7 +56,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Old list item removal command. Use the LIST command."; return "Deprecated. Use the LIST(REMOVE_ITEM ) command instead.";
} }
/** /**
@ -65,8 +65,6 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"This command has been superceded by the LIST(REMOVE ...) command. "
"It is provided for compatibility with older CMake code.\n"
" REMOVE(VAR VALUE VALUE ...)\n" " REMOVE(VAR VALUE VALUE ...)\n"
"Removes VALUE from the variable VAR. " "Removes VALUE from the variable VAR. "
"This is typically used to remove entries from a vector " "This is typically used to remove entries from a vector "

View File

@ -53,7 +53,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Add a list of subdirectories to the build."; return "Deprecated. Use the ADD_SUBDIRECTORY() command instead.";
} }
/** /**
@ -62,6 +62,7 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"Add a list of subdirectories to the build.\n";
" SUBDIRS(dir1 dir2 ..." " SUBDIRS(dir1 dir2 ..."
"[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] )\n" "[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] )\n"
"Add a list of subdirectories to the build. The ADD_SUBDIRECTORY " "Add a list of subdirectories to the build. The ADD_SUBDIRECTORY "

View File

@ -53,7 +53,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Legacy command. Does nothing."; return "Deprecated. Does nothing.";
} }
/** /**

View File

@ -50,7 +50,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Assert satisfaction of an option's required variables."; return "Deprecated. Use the IF() command instead.";
} }
/** /**
@ -59,6 +59,7 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"Assert satisfaction of an option's required variables.\n"
" VARIABLE_REQUIRES(TEST_VARIABLE RESULT_VARIABLE\n" " VARIABLE_REQUIRES(TEST_VARIABLE RESULT_VARIABLE\n"
" REQUIRED_VARIABLE1\n" " REQUIRED_VARIABLE1\n"
" REQUIRED_VARIABLE2 ...)\n" " REQUIRED_VARIABLE2 ...)\n"

View File

@ -55,7 +55,7 @@ public:
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return "Write a message to a file."; return "Deprecated. Use the FILE(WRITE ) command instead.";
} }
/** /**