Skip to content
Snippets Groups Projects
Commit d7a7d876 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

scripts(windows): configure Release instead of Beta for beta builds

Beta releases only need a build flag and not an entire vs project
configuration.

Change-Id: Id177e0adbc63a8666c20df3e16c8b5f2512739b5
parent 4edcc091
No related branches found
No related tags found
No related merge requests found
......@@ -207,7 +207,7 @@ def build(config_str, qtver, tests=False):
cmake_options = [
'-DCMAKE_PREFIX_PATH=' + qt_dir,
'-DCMAKE_BUILD_TYPE=' + config_str
'-DCMAKE_BUILD_TYPE=' + 'Release'
]
if tests:
cmake_options.append('-DENABLE_TESTS=true')
......@@ -228,7 +228,7 @@ def build(config_str, qtver, tests=False):
print('Building…')
cmd = [
'cmake', '--build', '.',
'--config', config_str,
'--config', 'Release',
'--', '-m'
]
if(execute_cmd(cmd, False, vs_env_vars, build_dir)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment