diff options
author | Brad King <brad.king@kitware.com> | 2022-02-28 15:16:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-28 15:25:18 (GMT) |
commit | 43416c48ed6bb7d3b8063ac4ea1ba02a4aab828e (patch) | |
tree | eff805381983587d9775f726ff40d9caba37aeea /Source/cmOutputConverter.h | |
parent | de766bc7e0f4a856abc712e64e4248e966ced37f (diff) | |
download | CMake-43416c48ed6bb7d3b8063ac4ea1ba02a4aab828e.zip CMake-43416c48ed6bb7d3b8063ac4ea1ba02a4aab828e.tar.gz CMake-43416c48ed6bb7d3b8063ac4ea1ba02a4aab828e.tar.bz2 |
cmOutputConverter: Always set relative path top source and binary together
Refactor to set both at once so we have a single place in the code that
knows both have been set.
Diffstat (limited to 'Source/cmOutputConverter.h')
-rw-r--r-- | Source/cmOutputConverter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h index 335442d..290809f 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -29,8 +29,8 @@ public: std::string const& GetRelativePathTopSource() const; std::string const& GetRelativePathTopBinary() const; - void SetRelativePathTopSource(std::string const& top); - void SetRelativePathTopBinary(std::string const& top); + void SetRelativePathTop(std::string const& topSource, + std::string const& topBinary); enum OutputFormat { |