Buildbot: Correction to previous commit

Previous commit didn't really disable cuda binaries for some reason.
This commit is contained in:
Sergey Sharybin 2015-08-27 12:22:44 +02:00
parent 067fe2719a
commit 90f667576f

@ -54,6 +54,8 @@ if 'cmake' in builder:
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: 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: