cmIncludeCommand.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmIncludeCommand_h
  14. #define cmIncludeCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. /** \class cmIncludeCommand
  18. * \brief
  19. *
  20. * cmIncludeCommand defines a list of distant
  21. * files that can be "included" in the current list file.
  22. * In almost every sense, this is identical to a C/C++
  23. * #include command. Arguments are first expended as usual.
  24. */
  25. class cmIncludeCommand : public cmCommand
  26. {
  27. public:
  28. /**
  29. * This is a virtual constructor for the command.
  30. */
  31. virtual cmCommand* Clone()
  32. {
  33. return new cmIncludeCommand;
  34. }
  35. /**
  36. * This is called when the command is first encountered in
  37. * the CMakeLists.txt file.
  38. */
  39. virtual bool InitialPass(std::vector<std::string> const& args);
  40. /**
  41. * This determines if the command gets propagated down
  42. * to makefiles located in subdirectories.
  43. */
  44. virtual bool IsInherited() {return true;}
  45. /**
  46. * The name of the command as specified in CMakeList.txt.
  47. */
  48. virtual const char* GetName() {return "INCLUDE";}
  49. /**
  50. * Succinct documentation.
  51. */
  52. virtual const char* GetTerseDocumentation()
  53. {
  54. return "Basically identical to a C #include \"something\" command.";
  55. }
  56. /**
  57. * More documentation.
  58. */
  59. virtual const char* GetFullDocumentation()
  60. {
  61. return
  62. "INCLUDE(file1 [OPTIONAL])\nIf OPTIONAL is present, then do not complain "
  63. "if the file does not exist.";
  64. }
  65. cmTypeMacro(cmIncludeCommand, cmCommand);
  66. };
  67. #endif