fix parallel

This commit is contained in:
Andrei Yankovich 2022-01-22 16:38:43 +03:00
parent feed1b305f
commit e887c280d5

View File

@ -21,9 +21,7 @@ class CMake(Make):
if len(target):
command += ' --target ' + target
else:
cpus = multiprocessing.cpu_count()
if cpus:
command += ' --parallel ' + str(cpus)
command += ' --parallel'
cxx = []
if cxxFlags is not None: