Buildbot: Test enable CUDA binaries for Win32

Linux 32bit seems to work fine now, let's see if Win32 also works.
This commit is contained in:
Sergey Sharybin 2015-09-09 16:38:44 +05:00
parent 42e15b9dd3
commit 4f29613894

@ -52,10 +52,7 @@ if 'cmake' in builder:
cmake_options.append(['-G', '"Visual Studio 12 2013"']) cmake_options.append(['-G', '"Visual Studio 12 2013"'])
cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake") cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake")
if 'win32' not in builder: cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1")
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1")
else:
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=0")
# configure and make # configure and make
retcode = subprocess.call(['cmake', blender_dir] + cmake_options) retcode = subprocess.call(['cmake', blender_dir] + cmake_options)
if retcode != 0: if retcode != 0: