diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 15:30:27 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 20:45:10 (GMT) |
commit | 5db17e9d8107629c1dabd0c1e2bf26429e5d841d (patch) | |
tree | 0c4c7a64ea203fd6cd44253346c60b0e89aa2e7b /Source/cmTarget.h | |
parent | ccf76c6e4cfd9fc7b04db099f7e165cda2336096 (diff) | |
download | CMake-5db17e9d8107629c1dabd0c1e2bf26429e5d841d.zip CMake-5db17e9d8107629c1dabd0c1e2bf26429e5d841d.tar.gz CMake-5db17e9d8107629c1dabd0c1e2bf26429e5d841d.tar.bz2 |
cmTarget: Move member `Name` to impl
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 860a18e..f9dd83e 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -76,7 +76,7 @@ public: cmGlobalGenerator* GetGlobalGenerator() const; ///! Set/Get the name of the target - const std::string& GetName() const { return this->Name; } + const std::string& GetName() const; ///! Get the policy map cmPolicies::PolicyMap const& GetPolicyMap() const; @@ -297,7 +297,6 @@ private: private: bool IsGeneratorProvided; - std::string Name; std::string InstallPath; std::string RuntimeInstallPath; std::vector<cmCustomCommand> PreBuildCommands; |