cmProjectCommand.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmProjectCommand_h
  11. #define cmProjectCommand_h
  12. #include "cmCommand.h"
  13. /** \class cmProjectCommand
  14. * \brief Specify the name for this build project.
  15. *
  16. * cmProjectCommand is used to specify a name for this build project.
  17. * It is defined once per set of CMakeList.txt files (including
  18. * all subdirectories). Currently it just sets the name of the workspace
  19. * file for Microsoft Visual C++
  20. */
  21. class cmProjectCommand : public cmCommand
  22. {
  23. public:
  24. /**
  25. * This is a virtual constructor for the command.
  26. */
  27. virtual cmCommand* Clone()
  28. {
  29. return new cmProjectCommand;
  30. }
  31. /**
  32. * This is called when the command is first encountered in
  33. * the CMakeLists.txt file.
  34. */
  35. virtual bool InitialPass(std::vector<std::string> const& args,
  36. cmExecutionStatus &status);
  37. /**
  38. * The name of the command as specified in CMakeList.txt.
  39. */
  40. virtual const char* GetName() {return "project";}
  41. /**
  42. * Succinct documentation.
  43. */
  44. virtual const char* GetTerseDocumentation()
  45. {
  46. return "Set a name for the entire project.";
  47. }
  48. /**
  49. * More documentation.
  50. */
  51. virtual const char* GetFullDocumentation()
  52. {
  53. return
  54. " project(<projectname> [languageName1 languageName2 ... ] )\n"
  55. "Sets the name of the project. "
  56. "Additionally this sets the variables <projectName>_BINARY_DIR and "
  57. "<projectName>_SOURCE_DIR to the respective values.\n"
  58. "Optionally you can specify which languages your project supports. "
  59. "Example languages are CXX (i.e. C++), C, Fortran, etc. "
  60. "By default C and CXX are enabled. E.g. if you do not have a "
  61. "C++ compiler, you can disable the check for it by explicitly listing "
  62. "the languages you want to support, e.g. C. By using the special "
  63. "language \"NONE\" all checks for any language can be disabled. "
  64. "If a variable exists called CMAKE_PROJECT_<projectName>_INCLUDE_FILE, "
  65. "the file pointed to by that variable will be included as the last step "
  66. "of the project command.";
  67. }
  68. cmTypeMacro(cmProjectCommand, cmCommand);
  69. };
  70. #endif