diff options
author | Brad King <brad.king@kitware.com> | 2021-05-03 14:53:40 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-05-03 14:53:50 (GMT) |
commit | 4419b944fdd7f1eaea06411224cfbe6242628c18 (patch) | |
tree | 0a65ff701c78b860ea15b7c5e0103fe2de1e678a /Source/cmLocalNinjaGenerator.h | |
parent | 4df3f5300a13827336ca5329b53834cf0fb63a7d (diff) | |
parent | ad08f93ee40a1cc855c403c1cc738237511224e3 (diff) | |
download | CMake-4419b944fdd7f1eaea06411224cfbe6242628c18.zip CMake-4419b944fdd7f1eaea06411224cfbe6242628c18.tar.gz CMake-4419b944fdd7f1eaea06411224cfbe6242628c18.tar.bz2 |
Merge topic 'ninja-multi-long-command-line-config'
ad08f93ee4 Ninja Multi-Config: Split long command lines by config
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6067
Diffstat (limited to 'Source/cmLocalNinjaGenerator.h')
-rw-r--r-- | Source/cmLocalNinjaGenerator.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmLocalNinjaGenerator.h b/Source/cmLocalNinjaGenerator.h index 8b6824f..a73fa27 100644 --- a/Source/cmLocalNinjaGenerator.h +++ b/Source/cmLocalNinjaGenerator.h @@ -61,7 +61,8 @@ public: } std::string BuildCommandLine( - std::vector<std::string> const& cmdLines, + std::vector<std::string> const& cmdLines, std::string const& outputConfig, + std::string const& commandConfig, std::string const& customStep = std::string(), cmGeneratorTarget const* target = nullptr) const; @@ -119,6 +120,8 @@ private: std::string MakeCustomLauncher(cmCustomCommandGenerator const& ccg); std::string WriteCommandScript(std::vector<std::string> const& cmdLines, + std::string const& outputConfig, + std::string const& commandConfig, std::string const& customStep, cmGeneratorTarget const* target) const; |