Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-08 18:10:33 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-08 18:10:33 +0400
commita56c6e18a8f3a7d520cdf8efc0b4a17e7ef9e341 (patch)
tree087e25fb2d4c2d364cb8ab6866d00183f61a37c3 /intern/cycles/cmake
parent64ab4140268498384525e05596ea1f559b7cd3df (diff)
Cycles:
* Disable precompiled cuda binaries, always do at run time * Change preview samples default to 10 * Hide volume panels since they don't do anything yet
Diffstat (limited to 'intern/cycles/cmake')
-rw-r--r--intern/cycles/cmake/external_libs.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/intern/cycles/cmake/external_libs.cmake b/intern/cycles/cmake/external_libs.cmake
index 0915d4d92c8..b6b8b351e13 100644
--- a/intern/cycles/cmake/external_libs.cmake
+++ b/intern/cycles/cmake/external_libs.cmake
@@ -85,18 +85,3 @@ if(WITH_CYCLES_BLENDER)
add_definitions(-DBLENDER_PLUGIN)
endif()
-###########################################################################
-# CUDA
-
-if(WITH_CYCLES_CUDA)
- find_package(CUDA) # Try to auto locate CUDA toolkit
- if(CUDA_FOUND)
- message(STATUS "CUDA nvcc = ${CUDA_NVCC_EXECUTABLE}")
- set(CYCLES_CUDA_ARCH sm_10 sm_11 sm_12 sm_13 sm_20 sm_21 CACHE STRING "CUDA architectures to build for")
- set(CYCLES_CUDA_MAXREG 24 CACHE STRING "CUDA maximum number of register to use")
- else()
- message(STATUS "CUDA compiler not found, disabling WITH_CYCLES_CUDA")
- set(WITH_CYCLES_CUDA OFF)
- endif()
-endif()
-