diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:44 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:45 (GMT) |
commit | 97f10e488a5153e45d6a27a730cc1ecbaae7d559 (patch) | |
tree | 441d0aac1e278885a7841049aae61783391728ed /Source/cmGeneratorTarget.h | |
parent | 4b86f5edc91ba649908f5b6ab0fb7f1154e38066 (diff) | |
download | CMake-97f10e488a5153e45d6a27a730cc1ecbaae7d559.zip CMake-97f10e488a5153e45d6a27a730cc1ecbaae7d559.tar.gz CMake-97f10e488a5153e45d6a27a730cc1ecbaae7d559.tar.bz2 |
cmGeneratorTarget: Move ReportPropertyOrigin from cmTarget.
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 d65b1ef..8e68d39 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -199,6 +199,11 @@ public: std::vector<cmSourceFile const*> XamlSources; }; + void ReportPropertyOrigin(const std::string &p, + const std::string &result, + const std::string &report, + const std::string &compatibilityType) const; + private: friend class cmTargetTraceDependencies; struct SourceEntry { std::vector<cmSourceFile*> Depends; }; @@ -212,6 +217,8 @@ private: mutable bool SourceFileFlagsConstructed; mutable std::map<cmSourceFile const*, SourceFileFlags> SourceFlagsMap; + mutable std::map<std::string, bool> DebugCompatiblePropertiesDone; + struct CompatibleInterfacesBase { std::set<std::string> PropsBool; |