diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2015-03-12 21:44:38 (GMT) |
---|---|---|
committer | Cristian Adam <cristian.adam@gmail.com> | 2019-08-26 16:16:42 (GMT) |
commit | 0467a2f91b632e9eb69805b7f0a2034ed4c8f39e (patch) | |
tree | 873283bbe40282c2d1f92ed6ea2d54fdaf7e1c7b /Source/cmGeneratorTarget.h | |
parent | 89479bde949b1ac33c37953ed768cd85b7d8109d (diff) | |
download | CMake-0467a2f91b632e9eb69805b7f0a2034ed4c8f39e.zip CMake-0467a2f91b632e9eb69805b7f0a2034ed4c8f39e.tar.gz CMake-0467a2f91b632e9eb69805b7f0a2034ed4c8f39e.tar.bz2 |
PCH: add PRECOMPILE_HEADERS to special properties
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 3874738..9d422ee 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -455,6 +455,9 @@ public: std::vector<BT<std::string>> GetLinkDepends( std::string const& config, std::string const& language) const; + std::vector<BT<std::string>> GetPrecompileHeaders( + const std::string& config, const std::string& language) const; + bool IsSystemIncludeDirectory(const std::string& dir, const std::string& config, const std::string& language) const; @@ -867,8 +870,11 @@ private: std::vector<TargetPropertyEntry*> CompileDefinitionsEntries; std::vector<TargetPropertyEntry*> LinkOptionsEntries; std::vector<TargetPropertyEntry*> LinkDirectoriesEntries; + std::vector<TargetPropertyEntry*> PrecompileHeadersEntries; std::vector<TargetPropertyEntry*> SourceEntries; mutable std::set<std::string> LinkImplicitNullProperties; + mutable std::map<std::string, std::string> PchHeaders; + mutable std::map<std::string, std::string> PchSources; void ExpandLinkItems(std::string const& prop, std::string const& value, std::string const& config, @@ -922,6 +928,7 @@ private: mutable bool DebugCompileDefinitionsDone; mutable bool DebugLinkOptionsDone; mutable bool DebugLinkDirectoriesDone; + mutable bool DebugPrecompileHeadersDone; mutable bool DebugSourcesDone; mutable bool LinkImplementationLanguageIsContextDependent; mutable bool UtilityItemsDone; |