diff options
author | friendlyanon <friendlyanon_@hotmail.com> | 2021-05-01 14:05:19 (GMT) |
---|---|---|
committer | friendlyanon <friendlyanon_@hotmail.com> | 2021-05-01 14:08:21 (GMT) |
commit | 4dd4e9dd6ce5efd9bb9bbb784816167a8b5873ae (patch) | |
tree | 7132734ea5535208e7a64f5fb927a0d3d69197ad /Source/cmBuildCommand.cxx | |
parent | a51ad60687ecc9cb9e5f58099d0c19c8f3db2629 (diff) | |
download | CMake-4dd4e9dd6ce5efd9bb9bbb784816167a8b5873ae.zip CMake-4dd4e9dd6ce5efd9bb9bbb784816167a8b5873ae.tar.gz CMake-4dd4e9dd6ce5efd9bb9bbb784816167a8b5873ae.tar.bz2 |
cmGlobalGenerator: Add parallel parameter to GenerateCMakeBuildCommand
Diffstat (limited to 'Source/cmBuildCommand.cxx')
-rw-r--r-- | Source/cmBuildCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index 2eaf315..4830343 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -77,7 +77,7 @@ bool MainSignature(std::vector<std::string> const& args, } std::string makecommand = mf.GetGlobalGenerator()->GenerateCMakeBuildCommand( - target, configuration, "", mf.IgnoreErrorsCMP0061()); + target, configuration, "", "", mf.IgnoreErrorsCMP0061()); mf.AddDefinition(variable, makecommand); @@ -104,7 +104,7 @@ bool TwoArgsSignature(std::vector<std::string> const& args, } std::string makecommand = mf.GetGlobalGenerator()->GenerateCMakeBuildCommand( - "", configType, "", mf.IgnoreErrorsCMP0061()); + "", configType, "", "", mf.IgnoreErrorsCMP0061()); if (cacheValue) { return true; |