diff options
Diffstat (limited to 'Source/cmExecProgramCommand.h')
-rw-r--r-- | Source/cmExecProgramCommand.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmExecProgramCommand.h b/Source/cmExecProgramCommand.h index 4836337..8518610 100644 --- a/Source/cmExecProgramCommand.h +++ b/Source/cmExecProgramCommand.h @@ -60,8 +60,7 @@ public: virtual const char* GetTerseDocumentation() { return - "Run and executable program during the processing of the CMakeList.txt" - " file."; + "Deprecated. Use the EXECUTE_PROCESS() command instead."; } /** @@ -70,6 +69,8 @@ public: virtual const char* GetFullDocumentation() { return + "Run and executable program during the processing of the CMakeList.txt" + " file.\n" " EXEC_PROGRAM(Executable [directory in which to run]\n" " [ARGS <arguments to executable>]\n" " [OUTPUT_VARIABLE <var>]\n" @@ -83,8 +84,6 @@ public: "To capture the return value of the execution, provide a RETURN_VALUE. " "If OUTPUT_VARIABLE is specified, then no output will go to the " "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." ; } |