diff options
author | Brad King <brad.king@kitware.com> | 2015-02-11 19:02:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-11 20:15:33 (GMT) |
commit | f30022eb07b913598326d2e3b10ff2e706fbe873 (patch) | |
tree | c4b40ec96cd6affe7b091548540e5ac0df659ce3 /Source/cmInstallTargetGenerator.h | |
parent | 7607c3d16aa0636458c909f4036e4b0d91581b30 (diff) | |
download | CMake-f30022eb07b913598326d2e3b10ff2e706fbe873.zip CMake-f30022eb07b913598326d2e3b10ff2e706fbe873.tar.gz CMake-f30022eb07b913598326d2e3b10ff2e706fbe873.tar.bz2 |
install: Allow generator expressions in TARGETS DESTINATION (#14317)
This will allow per-config destinations for targets in EXPORT sets.
Using multiple install(TARGETS) with separate CONFIGURATIONS is
rejected as a target appearing more than once in an export set.
Now instead one can write
install(TARGETS foo EXPORT exp DESTINATION lib/$<CONFIG>)
to get a single logical membership of the target in the export set
while still having a per-config destination.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r-- | Source/cmInstallTargetGenerator.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index 4d4b399..075c8a4 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -60,8 +60,7 @@ public: cmTarget* GetTarget() const { return this->Target; } bool IsImportLibrary() const { return this->ImportLibrary; } - std::string const& GetDestination() const - { return this->Destination; } + std::string GetDestination(std::string const& config) const; protected: virtual void GenerateScript(std::ostream& os); |