diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-07 07:47:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-07 08:24:26 (GMT) |
commit | 7f3e16239fd120eded5e23ee8a836d9e73119244 (patch) | |
tree | ec6eb18d4cf14ca61971a276f38c61d3ecabf664 /Source/cmGlobalGenerator.h | |
parent | d9df7fa70c854207bb36b45ca0fdca6665bd4bd8 (diff) | |
download | CMake-7f3e16239fd120eded5e23ee8a836d9e73119244.zip CMake-7f3e16239fd120eded5e23ee8a836d9e73119244.tar.gz CMake-7f3e16239fd120eded5e23ee8a836d9e73119244.tar.bz2 |
cmGlobalGenerator: Re-arrange data layout.
Size goes from 1488 to 1480 bytes.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 3b368c6..f02df90 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -398,10 +398,6 @@ protected: std::vector<std::string> depends, const char* workingDir, bool uses_terminal); - bool NeedSymbolicMark; - bool UseLinkScript; - bool ForceUnixPaths; - bool ToolSupportsColor; std::string FindMakeProgramFile; std::string ConfiguredFilesPath; cmake *CMakeInstance; @@ -414,7 +410,6 @@ protected: // Set of named installation components requested by the project. std::set<std::string> InstallComponents; - bool InstallTargetEnabled; // Sets of named target exports cmExportSetMap ExportSets; std::map<std::string, cmExportBuildFileGenerator*> BuildExportSets; @@ -448,7 +443,6 @@ private: cmState::Snapshot snapshot); cmMakefile* TryCompileOuterMakefile; - float FirstTimeProgress; // If you add a new map here, make sure it is copied // in EnableLanguagesFromGenerator std::map<std::string, bool> IgnoreExtensions; @@ -521,6 +515,14 @@ private: // Pool of file locks cmFileLockPool FileLockPool; #endif + +protected: + float FirstTimeProgress; + bool NeedSymbolicMark; + bool UseLinkScript; + bool ForceUnixPaths; + bool ToolSupportsColor; + bool InstallTargetEnabled; }; #endif |