summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-08 21:17:16 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-22 18:25:46 (GMT)
commitb2de25adeda1c37c8d626432df25fce7cd2ab032 (patch)
tree87f4f94fe56347da9c5d5c6e72a3a74b3d5c97a1 /Source/cmMakefile.h
parentd6239507b2f08bd1fee53c84af3998a14fa9819b (diff)
downloadCMake-b2de25adeda1c37c8d626432df25fce7cd2ab032.zip
CMake-b2de25adeda1c37c8d626432df25fce7cd2ab032.tar.gz
CMake-b2de25adeda1c37c8d626432df25fce7cd2ab032.tar.bz2
cmMakefile: Split accessors for compile options 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 e69ce1e..9b21608 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -747,7 +747,8 @@ public:
void SetCheckCMP0000(bool b) { this->CheckCMP0000 = b; }
std::vector<cmValueWithOrigin> GetIncludeDirectoriesEntries() const;
- std::vector<cmValueWithOrigin> GetCompileOptionsEntries() const;
+ std::vector<std::string> GetCompileOptionsEntries() const;
+ std::vector<cmListFileBacktrace> GetCompileOptionsBacktraces() const;
std::vector<std::string> GetCompileDefinitionsEntries() const;
std::vector<cmListFileBacktrace> GetCompileDefinitionsBacktraces() const;