diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-19 17:05:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-19 17:05:24 (GMT) |
commit | 077f81d3599c520493e8ed82e6b6026585ca5e76 (patch) | |
tree | dcfd76f5c4c79cdf725c5e13072df2455a6cf1f0 /Source/cmCMakeMinimumRequired.h | |
parent | 55821b28679ac9e4de5d279425e9b2c3959cf34f (diff) | |
download | CMake-077f81d3599c520493e8ed82e6b6026585ca5e76.zip CMake-077f81d3599c520493e8ed82e6b6026585ca5e76.tar.gz CMake-077f81d3599c520493e8ed82e6b6026585ca5e76.tar.bz2 |
ENH: fix doc line
Diffstat (limited to 'Source/cmCMakeMinimumRequired.h')
-rw-r--r-- | Source/cmCMakeMinimumRequired.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h index 677a4a0..825920b 100644 --- a/Source/cmCMakeMinimumRequired.h +++ b/Source/cmCMakeMinimumRequired.h @@ -58,7 +58,7 @@ public: */ virtual const char* GetTerseDocumentation() { - return "Determine the command line that will build this project."; + return "Set the minimum required version of cmake for a project."; } /** @@ -67,8 +67,8 @@ public: virtual const char* GetFullDocumentation() { return - "CMAKE_MINIMUM_REQUIRED(NAME MAKECOMMAND)\n" - "Within CMAKE set NAME to the command that will build this project from the command line using MAKECOMMAND."; + "CMAKE_MINIMUM_REQUIRED(VERSION versionNumber)\n" + "Let cmake know that the project requires a certain version of a cmake, or newer. CMake will also try to backwards compatible to the version of cmake specified, if a newer version of cmake is running."; } cmTypeMacro(cmCMakeMinimumRequired, cmCommand); |