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

View File

@ -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)