summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.h
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@gmail.com>2019-10-05 10:20:37 (GMT)
committerCristian Adam <cristian.adam@gmail.com>2019-10-09 11:50:25 (GMT)
commit36ded610af1bf80304a35491eeb66c34c8e9b7a8 (patch)
treed41161cbbaafe3ecbe04aefffdc40e9e5adc6fae /Source/cmGeneratorTarget.h
parentf1fb63b306ad06a8931ca5a00a2b9ce9e66bc12e (diff)
downloadCMake-36ded610af1bf80304a35491eeb66c34c8e9b7a8.zip
CMake-36ded610af1bf80304a35491eeb66c34c8e9b7a8.tar.gz
CMake-36ded610af1bf80304a35491eeb66c34c8e9b7a8.tar.bz2
PCH: Generate sources during Compute step
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r--Source/cmGeneratorTarget.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h
index 27ad6eb..1f824b1 100644
--- a/Source/cmGeneratorTarget.h
+++ b/Source/cmGeneratorTarget.h
@@ -464,6 +464,12 @@ public:
const std::string& language) const;
std::string GetPchFileObject(const std::string& config,
const std::string& language);
+ std::string GetPchFile(const std::string& config,
+ const std::string& language);
+ std::string GetPchCreateCompileOptions(const std::string& config,
+ const std::string& language);
+ std::string GetPchUseCompileOptions(const std::string& config,
+ const std::string& language);
bool IsSystemIncludeDirectory(const std::string& dir,
const std::string& config,
@@ -883,6 +889,9 @@ private:
mutable std::map<std::string, std::string> PchHeaders;
mutable std::map<std::string, std::string> PchSources;
mutable std::map<std::string, std::string> PchObjectFiles;
+ mutable std::map<std::string, std::string> PchFiles;
+ mutable std::map<std::string, std::string> PchCreateCompileOptions;
+ mutable std::map<std::string, std::string> PchUseCompileOptions;
void ExpandLinkItems(std::string const& prop, std::string const& value,
std::string const& config,