diff --git a/Source/cmProjectCommand.h b/Source/cmProjectCommand.h index 4e9b2892e..fe3b36c88 100644 --- a/Source/cmProjectCommand.h +++ b/Source/cmProjectCommand.h @@ -64,14 +64,16 @@ public: virtual const char* GetFullDocumentation() { return - " project(projectname [CXX] [C] [Java])\n" + " project( [languageName1 languageName2 ... ] )\n" "Sets the name of the project. " - "This creates the variables projectname_BINARY_DIR and " - "projectname_SOURCE_DIR. " + "Additionally this sets the variables _BINARY_DIR and " + "_SOURCE_DIR to the respective values.\n" "Optionally you can specify which languages your project supports. " - "By default all languages are supported. If you do not have a " - "C++ compiler, but want" - " to build a c program with cmake, then use this option."; + "Example languages are CXX (i.e. C++), C, Fortran, etc. " + "By default C and CXX are enabled. E.g. if you do not have a " + "C++ compiler, you can disable the check for it by explicitely listing " + "the languages you want to support, e.g. C. By using the special " + "language \"NONE\" all checks for any language can be disabled."; } cmTypeMacro(cmProjectCommand, cmCommand);