summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-08 21:35:01 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-22 18:25:47 (GMT)
commitc7b39d06f9b1b5843682f52992634c8dad22aece (patch)
treed5ef225eb45637c58ad88be0a14697ceae227a35 /Source/cmMakefile.h
parentb2de25adeda1c37c8d626432df25fce7cd2ab032 (diff)
downloadCMake-c7b39d06f9b1b5843682f52992634c8dad22aece.zip
CMake-c7b39d06f9b1b5843682f52992634c8dad22aece.tar.gz
CMake-c7b39d06f9b1b5843682f52992634c8dad22aece.tar.bz2
cmMakefile: Split accessors for include directories and origins.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 9b21608..8f236af 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -746,7 +746,8 @@ public:
/** Set whether or not to report a CMP0000 violation. */
void SetCheckCMP0000(bool b) { this->CheckCMP0000 = b; }
- std::vector<cmValueWithOrigin> GetIncludeDirectoriesEntries() const;
+ std::vector<std::string> GetIncludeDirectoriesEntries() const;
+ std::vector<cmListFileBacktrace> GetIncludeDirectoriesBacktraces() const;
std::vector<std::string> GetCompileOptionsEntries() const;
std::vector<cmListFileBacktrace> GetCompileOptionsBacktraces() const;
std::vector<std::string> GetCompileDefinitionsEntries() const;