diff options
author | Brad King <brad.king@kitware.com> | 2021-01-18 21:02:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 17:46:32 (GMT) |
commit | c9e87e34479fb931c49c93bb8d9edefc3803adc4 (patch) | |
tree | 06167418b66c4db9178fbfddbf3a8835e0fdb31c /Source/cmInstallTargetGenerator.h | |
parent | 6282a8e19057c2540cee91e894f01f599e205240 (diff) | |
download | CMake-c9e87e34479fb931c49c93bb8d9edefc3803adc4.zip CMake-c9e87e34479fb931c49c93bb8d9edefc3803adc4.tar.gz CMake-c9e87e34479fb931c49c93bb8d9edefc3803adc4.tar.bz2 |
cmInstallTargetGenerator: Avoid duplicating install destination in memory
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r-- | Source/cmInstallTargetGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index a53a75a..fe54ca6 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -79,7 +79,8 @@ protected: void AddTweak(std::ostream& os, Indent indent, const std::string& config, std::string const& file, TweakMethod tweak); void AddTweak(std::ostream& os, Indent indent, const std::string& config, - std::vector<std::string> const& files, TweakMethod tweak); + std::string const& dir, std::vector<std::string> const& files, + TweakMethod tweak); std::string GetDestDirPath(std::string const& file); void PreReplacementTweaks(std::ostream& os, Indent indent, const std::string& config, |