summaryrefslogtreecommitdiffstats
path: root/Source/cmCommand.h
diff options
context:
space:
mode:
authorWill Schroeder <will.schroeder@kitware.com>2001-01-18 16:20:24 (GMT)
committerWill Schroeder <will.schroeder@kitware.com>2001-01-18 16:20:24 (GMT)
commit658614ff6a14411e2a697fac1f1717a7f4370bf0 (patch)
tree42702fd2580f03b4553d385afeaf42608700758b /Source/cmCommand.h
parentcacd6d160410660bcbc27f02b267833448c1eef1 (diff)
downloadCMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.zip
CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.gz
CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.bz2
ENH:Reworked CMake for consistency
Diffstat (limited to 'Source/cmCommand.h')
-rw-r--r--Source/cmCommand.h138
1 files changed, 138 insertions, 0 deletions
diff --git a/Source/cmCommand.h b/Source/cmCommand.h
new file mode 100644
index 0000000..7051d3e
--- /dev/null
+++ b/Source/cmCommand.h
@@ -0,0 +1,138 @@
+ /*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+
+ Copyright (c) 2000 National Library of Medicine
+ All rights reserved.
+
+ See COPYRIGHT.txt for copyright details.
+
+=========================================================================*/
+#ifndef cmCommand_h
+#define cmCommand_h
+
+#include "cmStandardIncludes.h"
+#include "cmMakefile.h"
+
+/** \class cmCommand
+ * \brief Superclass for all commands in CMake.
+ *
+ * cmCommand is the base class for all commands in CMake. A command
+ * manifests as an entry in CMakeLists.txt and produces one or
+ * more makefile rules. Commands are associated with a particular
+ * makefile. This base class cmCommand defines the API for commands
+ * to support such features as enable/disable, inheritance,
+ * documentation, and construction.
+ */
+class cmCommand
+{
+public:
+ /**
+ * Construct the command. By default it is enabled with no makefile.
+ */
+ cmCommand()
+ {m_Makefile = 0; m_Enabled = true;}
+
+ /**
+ * Specify the makefile.
+ */
+ void SetMakefile(cmMakefile*m)
+ {m_Makefile = m; }
+
+ /**
+ * This is called when the command is first encountered in
+ * the CMakeLists.txt file.
+ */
+ virtual bool Invoke(std::vector<std::string>& args) = 0;
+
+ /**
+ * This is called at the end after all the information
+ * specified by the command is accumulated. Most commands do
+ * not implement this method.
+ */
+ virtual void FinalPass() {};
+
+ /**
+ * This is called to let the command check the cache.
+ */
+ virtual void LoadCache() {}
+
+ /**
+ * This is a virtual constructor for the command.
+ */
+ virtual cmCommand* Clone() = 0;
+
+ /**
+ * This determines if the command gets propagated down
+ * to makefiles located in subdirectories.
+ */
+ virtual bool IsInherited()
+ {
+ return false;
+ }
+
+ /**
+ * The name of the command as specified in CMakeList.txt.
+ */
+ virtual const char* GetName() = 0;
+
+ /**
+ * Succinct documentation.
+ */
+ virtual const char* GetTerseDocumentation() = 0;
+
+ /**
+ * More documentation.
+ */
+ virtual const char* GetFullDocumentation() = 0;
+
+ /**
+ * Enable the command.
+ */
+ void EnabledOn()
+ {m_Enabled = true;}
+
+ /**
+ * Disable the command.
+ */
+ void EnabledOff()
+ {m_Enabled = false;}
+
+ /**
+ * Query whether the command is enabled.
+ */
+ bool GetEnabled()
+ {return m_Enabled;}
+
+ /**
+ * Disable or enable the command.
+ */
+ void SetEnabled(bool enabled)
+ {m_Enabled = enabled;}
+
+ /**
+ * Return the last error string.
+ */
+ const char* GetError()
+ {return m_Error.c_str();}
+
+protected:
+ void SetError(const char* e)
+ {
+ m_Error = this->GetName();
+ m_Error += " ";
+ m_Error += e;
+ }
+ cmMakefile* m_Makefile;
+
+private:
+ bool m_Enabled;
+ std::string m_Error;
+};
+
+#endif