4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-07 02:39:36 +00:00

fix makeTarget

This commit is contained in:
Andrei Yankovich 2022-01-21 15:57:03 +03:00
parent a48ccbed90
commit b8ea8ec664

@ -26,7 +26,7 @@ class CMake(Make):
if cpus:
command += ' --parallel ' + str(cpus)
command += ' -- ' + cxxFlags.join(' ')
command += ' -- ' + ' '.join(cxxFlags)
return command
def makeCommand(self, props):