fix cmake command

This commit is contained in:
Andrei Yankovich 2021-03-31 20:27:52 +03:00
parent 616cfdb735
commit c92aeb35ee

View File

@ -15,12 +15,12 @@ class CMake(Make):
return "C"
def mainCmd(self):
command = [
options = [
'cmake',
"-B cmake_build"
]
return command
return ' '.join(options)
def make(self):
return 'cmake --build cmake_build --target all'