This commit is contained in:
Andrei Yankovich 2020-02-04 16:34:32 +03:00
parent 0c2cde4d2f
commit a8689ba10b

View File

@ -75,6 +75,10 @@ class BaseModule:
def makeCommand(self, props):
command = ['make']
if self.platform == BaseModule.P_Windows:
command = ['mingw32-make']
cpus = multiprocessing.cpu_count()
if cpus: