diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-07 22:29:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-22 18:25:43 (GMT) |
commit | ef17bbefd7c504af65f2e6c52f5d7fa8e82d087e (patch) | |
tree | bec7faced7046b4397f3c9ecf47b2177394a2f59 /Source/cmMakefile.h | |
parent | a89c02ce3d53aa6459a3d76d9f5c0573da88ceb3 (diff) | |
download | CMake-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.h | 9 |
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&); |