From 5174fbd39079e6cb3b43599e6ee234d9e550201a Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Thu, 12 Mar 2009 18:43:17 -0400 Subject: [PATCH] STYLE: document NONE for disabling any languages, slightly change wording of the rest of the documentation, so it is more similar to ENABLE_LANGUAGE() (#8718) Alex --- Source/cmProjectCommand.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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);