diff options
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 1fb8cfe..7e718af 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -221,6 +221,9 @@ public: const std::string& config, const std::string& language) const; + void GetCompileFeatures(std::vector<std::string> &features, + const std::string& config) const; + bool IsSystemIncludeDirectory(const std::string& dir, const std::string& config) const; @@ -412,6 +415,7 @@ private: std::vector<TargetPropertyEntry*> IncludeDirectoriesEntries; std::vector<TargetPropertyEntry*> CompileOptionsEntries; + std::vector<TargetPropertyEntry*> CompileFeaturesEntries; void ExpandLinkItems(std::string const& prop, std::string const& value, std::string const& config, cmTarget const* headTarget, @@ -427,6 +431,7 @@ private: mutable bool PolicyWarnedCMP0022; mutable bool DebugIncludesDone; mutable bool DebugCompileOptionsDone; + mutable bool DebugCompileFeaturesDone; public: std::vector<cmTarget const*> const& |