diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 21:48:58 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:10 (GMT) |
commit | d051086ccec5cd4b381cf47afb0e7fe962ed4c0b (patch) | |
tree | f75c2f09a92e0d3a15cb3849bf5d8c84a3ab8cc2 /Source/cmGeneratorTarget.h | |
parent | db4cb92bda8b43c3d66d27533622bb802e823589 (diff) | |
download | CMake-d051086ccec5cd4b381cf47afb0e7fe962ed4c0b.zip CMake-d051086ccec5cd4b381cf47afb0e7fe962ed4c0b.tar.gz CMake-d051086ccec5cd4b381cf47afb0e7fe962ed4c0b.tar.bz2 |
cmGeneratorTarget: Move compile features processing from cmTarget.
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& |