summaryrefslogtreecommitdiffstats
path: root/Source/cmRemoveDefinitionsCommand.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-15 17:58:10 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-15 17:58:10 (GMT)
commit504d0bc3b38574d8394995b589214ce9cb0f6d3a (patch)
treeab49a624e100b25ca9ea5bb48624cc8d2e110857 /Source/cmRemoveDefinitionsCommand.h
parenta5c3087360b79132c7e3c5004e6a9d14c7e62805 (diff)
downloadCMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.zip
CMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.tar.gz
CMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.tar.bz2
ENH: ADD REMOVE_DEFINITION command. Fix feature request: Bug #182 - Add opposite to ADD_DEFINITIONS
Diffstat (limited to 'Source/cmRemoveDefinitionsCommand.h')
-rw-r--r--Source/cmRemoveDefinitionsCommand.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/Source/cmRemoveDefinitionsCommand.h b/Source/cmRemoveDefinitionsCommand.h
new file mode 100644
index 0000000..ac1c75c
--- /dev/null
+++ b/Source/cmRemoveDefinitionsCommand.h
@@ -0,0 +1,82 @@
+/*=========================================================================
+
+ Program: CMake - Cross-Platform Makefile Generator
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
+ See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
+
+ This software is distributed WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the above copyright notices for more information.
+
+=========================================================================*/
+#ifndef cmRemoveDefinitionsCommand_h
+#define cmRemoveDefinitionsCommand_h
+
+#include "cmCommand.h"
+
+/** \class cmRemoveDefinitionsCommand
+ * \brief Specify a list of compiler defines
+ *
+ * cmRemoveDefinitionsCommand specifies a list of compiler defines. These defines will
+ * be removed from the compile command.
+ */
+class cmRemoveDefinitionsCommand : public cmCommand
+{
+public:
+ /**
+ * This is a virtual constructor for the command.
+ */
+ virtual cmCommand* Clone()
+ {
+ return new cmRemoveDefinitionsCommand;
+ }
+
+ /**
+ * This is called when the command is first encountered in
+ * the CMakeLists.txt file.
+ */
+ virtual bool InitialPass(std::vector<std::string> const& args);
+
+ /**
+ * This determines if the command gets propagated down
+ * to makefiles located in subdirectories.
+ */
+ virtual bool IsInherited() {return true;}
+
+ /**
+ * The name of the command as specified in CMakeList.txt.
+ */
+ virtual const char* GetName() {return "REMOVE_DEFINITIONS";}
+
+ /**
+ * Succinct documentation.
+ */
+ virtual const char* GetTerseDocumentation()
+ {
+ return "Removes -D define flags to the command line of C and C++ compilers.";
+ }
+
+ /**
+ * More documentation.
+ */
+ virtual const char* GetFullDocumentation()
+ {
+ return
+ " REMOVE_DEFINITIONS(-DFOO -DBAR ...)\n"
+ "Removes flags from command line of C and C++ compilers. "
+ "This command can be used to remove any flag from a compile line, "
+ "but the -D flag is accepted most C/C++ compilers. "
+ "Other flags may not be as portable.";
+ }
+
+ cmTypeMacro(cmRemoveDefinitionsCommand, cmCommand);
+};
+
+
+
+#endif