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
Notes: blender-bot 2023-02-14 08:47:32 +01:00
Referenced by issue #46001, Properties Editor -> Material Tab -> Cycles auto renders icon which crashes blender when the material uses up too much ram
Referenced by issue #45933, Cannot select camera when camera has been scaled on the x / y / z
Referenced by issue #45931, Blender Fails to generate previews
Referenced by issue #45708, OSD Crash
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ if 'cmake' in builder:
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")
else:
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=0")
# configure and make
retcode = subprocess.call(['cmake', blender_dir] + cmake_options)
if retcode != 0: