diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 12:32:09 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-19 14:01:39 (GMT) |
commit | 41bb831fc910d85d79811dc367b25c0880cbe6ac (patch) | |
tree | d5283d326117a628ecefb50c669edf595f9c1a1e /Source/cmMakefile.h | |
parent | 881613c4abbbca35223678d6b17da418958a0005 (diff) | |
download | CMake-41bb831fc910d85d79811dc367b25c0880cbe6ac.zip CMake-41bb831fc910d85d79811dc367b25c0880cbe6ac.tar.gz CMake-41bb831fc910d85d79811dc367b25c0880cbe6ac.tar.bz2 |
cmMakefile: Remove special handling of MACROS property.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 98d199a..489a8b1 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -655,12 +655,6 @@ public: */ cmSourceFile *GetSourceFileWithOutput(const std::string& outName) const; - /** - * Add a macro to the list of macros. The arguments should be name of the - * macro and a documentation signature of it - */ - void AddMacro(const char* name); - ///! Add a new cmTest to the list of tests for this makefile. cmTest* CreateTest(const std::string& testName); @@ -670,11 +664,6 @@ public: cmTest* GetTest(const std::string& testName) const; /** - * Get a list of macros as a ; separated string - */ - void GetListOfMacros(std::string& macros) const; - - /** * Return a location of a file in cmake or custom modules directory */ std::string GetModulesFile(const char* name) const; @@ -909,8 +898,6 @@ private: std::stack<int> LoopBlockCounter; - std::vector<std::string> MacrosList; - mutable cmsys::RegularExpression cmDefineRegex; mutable cmsys::RegularExpression cmDefine01Regex; mutable cmsys::RegularExpression cmAtVarRegex; |