summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-23 15:42:11 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-23 20:45:10 (GMT)
commit0dcef68cd8961f8b3d89edbf46093949778daac8 (patch)
treee1085c3c600c76f68c9c092bf8c1e57792cb47b8 /Source/cmTarget.cxx
parent5db17e9d8107629c1dabd0c1e2bf26429e5d841d (diff)
downloadCMake-0dcef68cd8961f8b3d89edbf46093949778daac8.zip
CMake-0dcef68cd8961f8b3d89edbf46093949778daac8.tar.gz
CMake-0dcef68cd8961f8b3d89edbf46093949778daac8.tar.bz2
cmTarget: Move member `InstallPath` to impl
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index ebf5e6d..fa0e3e7 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -169,6 +169,7 @@ public:
cmMakefile* Makefile;
cmPolicies::PolicyMap PolicyMap;
std::string Name;
+ std::string InstallPath;
cmPropertyMap Properties;
std::set<BT<std::string>> Utilities;
std::set<std::string> SystemIncludeDirectories;
@@ -773,6 +774,16 @@ void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const
}
}
+std::string const& cmTarget::GetInstallPath() const
+{
+ return impl->InstallPath;
+}
+
+void cmTarget::SetInstallPath(std::string const& name)
+{
+ impl->InstallPath = name;
+}
+
cmTarget::LinkLibraryVectorType const& cmTarget::GetOriginalLinkLibraries()
const
{