From 19774407700c0178f9da73f68f50ba4ba980af64 Mon Sep 17 00:00:00 2001 From: Martijn Berger Date: Thu, 10 Nov 2016 10:55:46 +0100 Subject: [PATCH] buidlbot, msbuild is slightly different in that is wants to build debug anyway even if we told cmake we want release --- build_files/buildbot/slave_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index d66a0302be7..634a1aca77e 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -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]