[Bf-blender-cvs] [1977440] master: buidlbot, msbuild is slightly different in that is wants to build debug anyway even if we told cmake we want release

Martijn Berger noreply at git.blender.org
Thu Nov 10 10:55:52 CET 2016


Commit: 19774407700c0178f9da73f68f50ba4ba980af64
Author: Martijn Berger
Date:   Thu Nov 10 10:55:46 2016 +0100
Branches: master
https://developer.blender.org/rB19774407700c0178f9da73f68f50ba4ba980af64

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

===================================================================

M	build_files/buildbot/slave_compile.py

===================================================================

diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index d66a030..634a1ac 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]




More information about the Bf-blender-cvs mailing list