diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-09 08:34:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 09:25:12 (GMT) |
commit | 2628dec12cb22546d2a21032f53fb0ef096faec8 (patch) | |
tree | cca1d9508443f217c1b4b8099bc5b3f9d477e389 /Source/cmLocalGenerator.h | |
parent | 315b9a31895ca6bb26eba12bff3a0fe9cd37568a (diff) | |
download | CMake-2628dec12cb22546d2a21032f53fb0ef096faec8.zip CMake-2628dec12cb22546d2a21032f53fb0ef096faec8.tar.gz CMake-2628dec12cb22546d2a21032f53fb0ef096faec8.tar.bz2 |
cmLocalGenerator: Store variable replacements as state
These do not change over the lifetime of the cmLocalGenerator.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 44d10bb..d54fbff 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -390,6 +390,10 @@ protected: std::vector<cmGeneratorTarget*> OwnedImportedGeneratorTargets; std::map<std::string, std::string> AliasTargets; + std::map<std::string, std::string> Compilers; + std::map<std::string, std::string> VariableMappings; + std::string CompilerSysroot; + bool EmitUniversalBinaryFlags; // Hack for ExpandRuleVariable until object-oriented version is |