buidlbot, msbuild is slightly different in that is wants to build debug anyway even if we told cmake we want release

This commit is contained in:
Martijn Berger 2016-11-10 10:55:46 +01:00
parent 2138fdb785
commit 1977440770
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ if 'cmake' in builder:
sys.exit(retcode)
if 'win32' in builder or 'win64' in builder:
command = ['cmake', '--build', '.', '--target', target_name]
command = ['cmake', '--build', '.', '--target', target_name, '--config']
else:
command = target_chroot_prefix + ['make', '-s', '-j2', target_name]