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

remove parallel option of target builds

This commit is contained in:
Andrei Yankovich 2022-01-21 19:08:09 +03:00
parent b1b1227f90
commit fa79ecc8df

@ -23,10 +23,10 @@ class CMake(Make):
if len(target):
command += ' --target ' + target
cpus = multiprocessing.cpu_count()
if cpus:
command += ' --parallel ' + str(cpus)
else:
cpus = multiprocessing.cpu_count()
if cpus:
command += ' --parallel ' + str(cpus)
if len(cxxFlags):
command += ' -- ' + ' '.join(cxxFlags)