diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 21:14:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:45:21 (GMT) |
commit | e6ccbf6f30fb7b893b00a7c26fa165065eed4323 (patch) | |
tree | 143ba90afc21ffeafd526b8134785d4150d00a37 /Source/cmGeneratorTarget.h | |
parent | 8bfb0c53dae93d697ca5d92ff79068af351fe56b (diff) | |
download | CMake-e6ccbf6f30fb7b893b00a7c26fa165065eed4323.zip CMake-e6ccbf6f30fb7b893b00a7c26fa165065eed4323.tar.gz CMake-e6ccbf6f30fb7b893b00a7c26fa165065eed4323.tar.bz2 |
cmGeneratorTarget: Move include directory 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 2e0d5fe..513884f 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -332,6 +332,8 @@ public: const std::string &report, const std::string &compatibilityType) const; + class TargetPropertyEntry; + private: friend class cmTargetTraceDependencies; struct SourceEntry { std::vector<cmSourceFile*> Depends; }; @@ -404,6 +406,8 @@ private: GetImportLinkInterface(const std::string& config, cmTarget const* head, bool usage_requirements_only) const; + std::vector<TargetPropertyEntry*> IncludeDirectoriesEntries; + void ExpandLinkItems(std::string const& prop, std::string const& value, std::string const& config, cmTarget const* headTarget, bool usage_requirements_only, @@ -416,6 +420,7 @@ private: typedef std::map<OutputNameKey, std::string> OutputNameMapType; mutable OutputNameMapType OutputNameMap; mutable bool PolicyWarnedCMP0022; + mutable bool DebugIncludesDone; public: std::vector<cmTarget const*> const& |