cmUnsetCommand.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 cmUnsetCommand_h
  11. #define cmUnsetCommand_h
  12. #include "cmCommand.h"
  13. /** \class cmUnsetCommand
  14. * \brief Unset a CMAKE variable
  15. *
  16. * cmUnsetCommand unsets or removes a variable.
  17. */
  18. class cmUnsetCommand : public cmCommand
  19. {
  20. public:
  21. /**
  22. * This is a virtual constructor for the command.
  23. */
  24. virtual cmCommand* Clone()
  25. {
  26. return new cmUnsetCommand;
  27. }
  28. /**
  29. * This is called when the command is first encountered in
  30. * the CMakeLists.txt file.
  31. */
  32. virtual bool InitialPass(std::vector<std::string> const& args,
  33. cmExecutionStatus &status);
  34. /**
  35. * This determines if the command is invoked when in script mode.
  36. */
  37. virtual bool IsScriptable() { return true; }
  38. /**
  39. * The name of the command as specified in CMakeList.txt.
  40. */
  41. virtual const char* GetName() {return "unset";}
  42. /**
  43. * Succinct documentation.
  44. */
  45. virtual const char* GetTerseDocumentation()
  46. {
  47. return "Unset a variable, cache variable, or environment variable.";
  48. }
  49. /**
  50. * More documentation.
  51. */
  52. virtual const char* GetFullDocumentation()
  53. {
  54. return
  55. " unset(<variable> [CACHE])\n"
  56. "Removes the specified variable causing it to become undefined. "
  57. "If CACHE is present then the variable is removed from the cache "
  58. "instead of the current scope.\n"
  59. "<variable> can be an environment variable such as:\n"
  60. " unset(ENV{LD_LIBRARY_PATH})\n"
  61. "in which case the variable will be removed from the current "
  62. "environment.";
  63. }
  64. cmTypeMacro(cmUnsetCommand, cmCommand);
  65. };
  66. #endif