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
Notes: blender-bot 2023-02-14 07:24:42 +01:00
Referenced by issue #50022, "Mirror" in Dopesheet Crashes Blender
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, '--config']
command = ['cmake', '--build', '.', '--target', target_name, '--config', 'Release']
else:
command = target_chroot_prefix + ['make', '-s', '-j2', target_name]