diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-08 20:58:30 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-22 18:06:23 (GMT) |
commit | a89c02ce3d53aa6459a3d76d9f5c0573da88ceb3 (patch) | |
tree | 0c1270bfa7245cdfb6877790c1950b4d74aeaa1e /Source | |
parent | b19587e7d7ff90a25d1a75fc987d911d966d77f6 (diff) | |
download | CMake-a89c02ce3d53aa6459a3d76d9f5c0573da88ceb3.zip CMake-a89c02ce3d53aa6459a3d76d9f5c0573da88ceb3.tar.gz CMake-a89c02ce3d53aa6459a3d76d9f5c0573da88ceb3.tar.bz2 |
cmMakefile: Out of line some API.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 15 | ||||
-rw-r--r-- | Source/cmMakefile.h | 15 |
2 files changed, 18 insertions, 12 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index e4ecd1f..d5775fb 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -273,6 +273,21 @@ void cmMakefile::IssueMessage(cmake::MessageType t, } } +std::vector<cmValueWithOrigin> cmMakefile::GetIncludeDirectoriesEntries() const +{ + return this->IncludeDirectoriesEntries; +} + +std::vector<cmValueWithOrigin> cmMakefile::GetCompileOptionsEntries() const +{ + return this->CompileOptionsEntries; +} + +std::vector<cmValueWithOrigin> cmMakefile::GetCompileDefinitionsEntries() const +{ + return this->CompileDefinitionsEntries; +} + //---------------------------------------------------------------------------- cmListFileBacktrace cmMakefile::GetBacktrace() const { diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index d9dd466..783658d 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -746,18 +746,9 @@ public: /** Set whether or not to report a CMP0000 violation. */ void SetCheckCMP0000(bool b) { this->CheckCMP0000 = b; } - std::vector<cmValueWithOrigin> GetIncludeDirectoriesEntries() const - { - return this->IncludeDirectoriesEntries; - } - std::vector<cmValueWithOrigin> GetCompileOptionsEntries() const - { - return this->CompileOptionsEntries; - } - std::vector<cmValueWithOrigin> GetCompileDefinitionsEntries() const - { - return this->CompileDefinitionsEntries; - } + std::vector<cmValueWithOrigin> GetIncludeDirectoriesEntries() const; + std::vector<cmValueWithOrigin> GetCompileOptionsEntries() const; + std::vector<cmValueWithOrigin> GetCompileDefinitionsEntries() const; bool IsConfigured() const { return this->Configured; } void SetConfigured(){ this->Configured = true; } |