Use CodeBlocks+Makefiles in cmake on Linux.

It gives the files layout in the Qt Creator.
This commit is contained in:
John Preston 2018-11-29 15:43:28 +04:00
parent 0b619e50ba
commit 81c4166389
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ for format in gypFormats:
os.chdir(scriptPath + '/../../out')
for configuration in cmakeConfigurations:
os.chdir(configuration)
result = subprocess.call('cmake .', shell=True)
result = subprocess.call('cmake "-GCodeBlocks - Unix Makefiles" .', shell=True)
if result != 0:
print('[ERROR] Failed calling cmake for ' + configuration)
finish(result)