always provide --type

This commit is contained in:
Radovan Bast 2015-06-22 21:36:18 +02:00
parent a2eda46896
commit 9018ad347f

View File

@ -92,6 +92,8 @@ def gen_cmake_command(config):
for definition in config.get(section, 'define').split('\n'):
s.append(' command.append(%s)' % definition)
s.append(" command.append('-DCMAKE_BUILD_TYPE=%s' % arguments['--type'])")
s.append("\n return ' '.join(command)")
return '\n'.join(s)
@ -127,6 +129,7 @@ def gen_setup(config, relative_path):
rest = ' '.join(opt.split()[1:]).strip()
options.append([first, rest])
options.append(['--type=<TYPE>', 'Set the CMake build type (debug, release, or relwithdeb) [default: release].'])
options.append(['--show', 'Show CMake command and exit.'])
options.append(['<builddir>', 'Build directory.'])
options.append(['-h --help', 'Show this screen.'])