From 90bf426554a7cc1d429f2dd9a02edbcbeb51ceec Mon Sep 17 00:00:00 2001 From: Martijn Berger Date: Mon, 17 Nov 2014 13:37:34 +0100 Subject: [PATCH] cmake/buildbot: make sure we build the full blender and cycles cuda binaries --- build_files/buildbot/slave_compile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index f57ca2ac9b7..4ef46331c64 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -47,12 +47,12 @@ if 'cmake' in builder: cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=ppc') if 'win64' in builder: - cmake_options.append(['-G','"Visual Studio 12 2013 Win64"']) elif 'win32' in builder: cmake_options.append(['-G','"Visual Studio 12 2013"']) - + cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake") + cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1") # configure and make retcode = subprocess.call(['cmake', blender_dir] + cmake_options) if retcode != 0: