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/cmTarget.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/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 05b6aec..aae558e 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -375,9 +375,6 @@ public: void AppendBuildInterfaceIncludes(); - void GetCompileFeatures(std::vector<std::string> &features, - const std::string& config) const; - bool IsNullImpliedByLinkLibraries(const std::string &p) const; std::string GetDebugGeneratorExpressions(const std::string &value, @@ -402,6 +399,9 @@ public: cmStringRange GetCompileOptionsEntries() const; cmBacktraceRange GetCompileOptionsBacktraces() const; + cmStringRange GetCompileFeaturesEntries() const; + cmBacktraceRange GetCompileFeaturesBacktraces() const; + #if defined(_WIN32) && !defined(__CYGWIN__) const LinkLibraryVectorType &GetLinkLibrariesForVS6() const { return this->LinkLibrariesForVS6;} @@ -518,7 +518,6 @@ private: bool BuildInterfaceIncludesAppended; mutable bool DebugCompileDefinitionsDone; mutable bool DebugSourcesDone; - mutable bool DebugCompileFeaturesDone; mutable bool LinkImplementationLanguageIsContextDependent; #if defined(_WIN32) && !defined(__CYGWIN__) bool LinkLibrariesForVS6Analyzed; |