diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 15:45:21 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 20:45:10 (GMT) |
commit | 30495bb1c291627f94912049da6e06d951a062ec (patch) | |
tree | 79e45d0f5b09df4d2049d32bc0b6bb7563d95d12 /Source/cmTarget.h | |
parent | 0dcef68cd8961f8b3d89edbf46093949778daac8 (diff) | |
download | CMake-30495bb1c291627f94912049da6e06d951a062ec.zip CMake-30495bb1c291627f94912049da6e06d951a062ec.tar.gz CMake-30495bb1c291627f94912049da6e06d951a062ec.tar.bz2 |
cmTarget: Move member `RuntimeInstallPath` to impl
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 7dfedf1..b441df1 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -161,14 +161,8 @@ public: * Set the path where this target (if it has a runtime part) should be * installed. This is relative to INSTALL_PREFIX */ - std::string GetRuntimeInstallPath() const - { - return this->RuntimeInstallPath; - } - void SetRuntimeInstallPath(const char* name) - { - this->RuntimeInstallPath = name; - } + std::string const& GetRuntimeInstallPath() const; + void SetRuntimeInstallPath(std::string const& name); /** * Get/Set whether there is an install rule for this target. @@ -297,7 +291,6 @@ private: private: bool IsGeneratorProvided; - std::string RuntimeInstallPath; std::vector<cmCustomCommand> PreBuildCommands; std::vector<cmCustomCommand> PreLinkCommands; std::vector<cmCustomCommand> PostBuildCommands; |