4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-05 17:59:38 +00:00

fix parallel

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

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