summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-07 22:29:41 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-22 18:25:43 (GMT)
commitef17bbefd7c504af65f2e6c52f5d7fa8e82d087e (patch)
treebec7faced7046b4397f3c9ecf47b2177394a2f59 /Source/cmMakefile.h
parenta89c02ce3d53aa6459a3d76d9f5c0573da88ceb3 (diff)
downloadCMake-ef17bbefd7c504af65f2e6c52f5d7fa8e82d087e.zip
CMake-ef17bbefd7c504af65f2e6c52f5d7fa8e82d087e.tar.gz
CMake-ef17bbefd7c504af65f2e6c52f5d7fa8e82d087e.tar.bz2
cmMakefile: Separate storage of buildsystem properties and their origins.
This simplifies some existing and upcoming algorithms.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 783658d..57dcdb6 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -842,9 +842,12 @@ protected:
std::vector<std::string> HeaderFileExtensions;
std::string DefineFlags;
- std::vector<cmValueWithOrigin> IncludeDirectoriesEntries;
- std::vector<cmValueWithOrigin> CompileOptionsEntries;
- std::vector<cmValueWithOrigin> CompileDefinitionsEntries;
+ std::vector<std::string> IncludeDirectoriesEntries;
+ std::vector<cmListFileBacktrace> IncludeDirectoriesEntryBacktraces;
+ std::vector<std::string> CompileOptionsEntries;
+ std::vector<cmListFileBacktrace> CompileOptionsEntryBacktraces;
+ std::vector<std::string> CompileDefinitionsEntries;
+ std::vector<cmListFileBacktrace> CompileDefinitionsEntryBacktraces;
// Track the value of the computed DEFINITIONS property.
void AddDefineFlag(const char*, std::string&);