fix parallel thread count

This commit is contained in:
Andrei Yankovich 2022-02-22 18:36:52 +03:00
parent ab58358461
commit 8e1c25fdb1

View File

@ -21,7 +21,7 @@ class CMake(Make):
if len(target):
command += ' --target ' + target
else:
command += ' --parallel'
command += ' --parallel 4'
cxx = []
if cxxFlags is not None: