Parallelise build

Currently just fixed at -j4
This commit is contained in:
Robert Taylor 2023-07-15 12:09:58 +00:00
parent edafd1d200
commit 6c3361632c
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class ExtensionBuilder(build_ext):
cfg = "Debug" if self.debug else "Release"
# cfg = 'Debug'
build_args = ["--config", cfg]
build_args = ["--config", cfg, "-j", "4"]
install_args = ["--config", cfg]
cmake_args += ["-DCMAKE_BUILD_TYPE=" + cfg]