diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-04-24 18:03:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-04-24 18:03:25 (GMT) |
commit | 31e3e829dd832139ec5e3ec47f7154b787a6e0ed (patch) | |
tree | e66d6ac6efe35a585285a20172ad040a354cedfe /Source/cmEnableLanguageCommand.h | |
parent | 32aecc84a1f469d257600ec2ee241c05507d3498 (diff) | |
download | CMake-31e3e829dd832139ec5e3ec47f7154b787a6e0ed.zip CMake-31e3e829dd832139ec5e3ec47f7154b787a6e0ed.tar.gz CMake-31e3e829dd832139ec5e3ec47f7154b787a6e0ed.tar.bz2 |
ENH: fix docs
Diffstat (limited to 'Source/cmEnableLanguageCommand.h')
-rw-r--r-- | Source/cmEnableLanguageCommand.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmEnableLanguageCommand.h b/Source/cmEnableLanguageCommand.h index 3db8cb2..decb788 100644 --- a/Source/cmEnableLanguageCommand.h +++ b/Source/cmEnableLanguageCommand.h @@ -54,7 +54,7 @@ public: */ virtual const char* GetTerseDocumentation() { - return "Set a name for the entire project."; + return "Enable a language (CXX/C/Fortran/etc)"; } /** @@ -64,7 +64,10 @@ public: { return " ENABLE_LANGUAGE(languageName)\n" - "This command enables support for the named language in CMake."; + "This command enables support for the named language in CMake. " + "This is the same as the project command but does not create " + "any of the extra varaibles that are created by the project command. " + "Example languages are CXX, C, Fortran."; } cmTypeMacro(cmEnableLanguageCommand, cmCommand); |