summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-05-03 14:53:40 (GMT)
committerKitware Robot <kwrobot@kitware.com>2021-05-03 14:53:50 (GMT)
commit4419b944fdd7f1eaea06411224cfbe6242628c18 (patch)
tree0a65ff701c78b860ea15b7c5e0103fe2de1e678a /Source/cmLocalNinjaGenerator.h
parent4df3f5300a13827336ca5329b53834cf0fb63a7d (diff)
parentad08f93ee40a1cc855c403c1cc738237511224e3 (diff)
downloadCMake-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.h5
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;