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 11:00:04 +01:00
parent 1977440770
commit 63b38848a2

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, '--config']
command = ['cmake', '--build', '.', '--target', target_name, '--config', 'Release']
else:
command = target_chroot_prefix + ['make', '-s', '-j2', target_name]