diff options
author | Brad King <brad.king@kitware.com> | 2022-02-10 14:07:28 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-02-10 14:07:34 (GMT) |
commit | 5a65e086441cb877252e73db9767884e9b284022 (patch) | |
tree | 1779bb3fe6ab52611435d9885b0bce69fddbddb5 /Source/cmTarget.h | |
parent | fdbc00fc476d9e07fba13f0b65dc6f97047984c0 (diff) | |
parent | 83d79636bff4963f16215b219c5941618a58c7bd (diff) | |
download | CMake-5a65e086441cb877252e73db9767884e9b284022.zip CMake-5a65e086441cb877252e73db9767884e9b284022.tar.gz CMake-5a65e086441cb877252e73db9767884e9b284022.tar.bz2 |
Merge topic 'restore-target-export-includes' into release-3.23
83d79636bf install(TARGETS): Restore per-export INCLUDES DESTINATION
Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !6969
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 18e39c7..0cdd2fc 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -27,6 +27,7 @@ class cmListFileContext; class cmMakefile; class cmPropertyMap; class cmSourceFile; +class cmTargetExport; class cmTargetInternals; template <typename T> @@ -237,8 +238,10 @@ public: void AddSystemIncludeDirectories(std::set<std::string> const& incs); std::set<std::string> const& GetSystemIncludeDirectories() const; - void AddInstallIncludeDirectories(cmStringRange const& incs); - cmStringRange GetInstallIncludeDirectoriesEntries() const; + void AddInstallIncludeDirectories(cmTargetExport const& te, + cmStringRange const& incs); + cmStringRange GetInstallIncludeDirectoriesEntries( + cmTargetExport const& te) const; BTs<std::string> const* GetLanguageStandardProperty( const std::string& propertyName) const; |