1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmUnsetCommand.h,v $
6 Date: $Date: 2008-08-25 14:31:28 $
7 Version: $Revision: 1.1 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmUnsetCommand_h
18 #define cmUnsetCommand_h
20 #include "cmCommand.h"
22 /** \class cmUnsetCommand
23 * \brief Unset a CMAKE variable
25 * cmUnsetCommand unsets or removes a variable.
27 class cmUnsetCommand
: public cmCommand
31 * This is a virtual constructor for the command.
33 virtual cmCommand
* Clone()
35 return new cmUnsetCommand
;
39 * This is called when the command is first encountered in
40 * the CMakeLists.txt file.
42 virtual bool InitialPass(std::vector
<std::string
> const& args
,
43 cmExecutionStatus
&status
);
46 * This determines if the command is invoked when in script mode.
48 virtual bool IsScriptable() { return true; }
51 * The name of the command as specified in CMakeList.txt.
53 virtual const char* GetName() {return "unset";}
56 * Succinct documentation.
58 virtual const char* GetTerseDocumentation()
60 return "Unset a variable, cache variable, or environment variable.";
66 virtual const char* GetFullDocumentation()
69 " unset(<variable> [CACHE])\n"
70 "Removes the specified variable causing it to become undefined. "
71 "If CACHE is present then the variable is removed from the cache "
72 "instead of the current scope.\n"
73 "<variable> can be an environment variable such as:\n"
74 " unset(ENV{LD_LIBRARY_PATH})\n"
75 "in which case the variable will be removed from the current "
79 cmTypeMacro(cmUnsetCommand
, cmCommand
);