fix typo error

This commit is contained in:
Andrei Yankovich 2021-03-31 18:32:27 +03:00
parent bb9817d730
commit f667ec6a7b

View File

@ -28,7 +28,7 @@ class CMake(Make):
def makeTarget(self, target): def makeTarget(self, target):
return 'cmake --build . --target ' + target return 'cmake --build . --target ' + target
def makeCommand(self props): def makeCommand(self, props):
command = [self.make()] command = [self.make()]
cpus = multiprocessing.cpu_count() cpus = multiprocessing.cpu_count()