diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-07-25 20:53:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-07-25 20:53:13 (GMT) |
commit | 4ab2650802f7b0addce7860aff4fd5a2709eae24 (patch) | |
tree | 6f1694144d9406300636b1c8b430b2232801e54e /Source/cmMakefile.h | |
parent | f783252c62e48d98bb267f00bff573ea66614cde (diff) | |
download | CMake-4ab2650802f7b0addce7860aff4fd5a2709eae24.zip CMake-4ab2650802f7b0addce7860aff4fd5a2709eae24.tar.gz CMake-4ab2650802f7b0addce7860aff4fd5a2709eae24.tar.bz2 |
added for each command
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index c20c589..5907c25 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -493,6 +493,13 @@ public: void RegisterData(const char*, cmData*); cmData* LookupData(const char*) const; + /** + * execute a single CMake command + */ + void cmMakefile::ExecuteCommand(std::string &name, + std::vector<std::string> &args); + + protected: std::string m_Prefix; std::vector<std::string> m_AuxSourceDirectories; // @@ -531,7 +538,7 @@ protected: RegisteredCommandsMap m_Commands; std::vector<cmCommand*> m_UsedCommands; cmMakefileGenerator* m_MakefileGenerator; - bool IsFunctionBlocked(const char *name, std::vector<std::string> &args) const; + bool IsFunctionBlocked(const char *name, std::vector<std::string> &args); private: /** @@ -550,6 +557,7 @@ private: typedef std::map<std::string, cmData*> DataMap; DataMap m_DataMap; + bool m_Inheriting; }; |