From 590a524323b6a5672a759a70e25226e4f6f2855c Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 16 Oct 2011 22:06:35 +0000 Subject: Cycles: Add cmake path for the CUDA toolkit (default installation) on windows. --- intern/cycles/cmake/external_libs.cmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'intern/cycles/cmake/external_libs.cmake') diff --git a/intern/cycles/cmake/external_libs.cmake b/intern/cycles/cmake/external_libs.cmake index fb7ba9cc3f2..07d45f9dd5d 100644 --- a/intern/cycles/cmake/external_libs.cmake +++ b/intern/cycles/cmake/external_libs.cmake @@ -89,8 +89,11 @@ endif() # CUDA if(WITH_CYCLES_CUDA) - - set(CYCLES_CUDA "/usr/local/cuda" CACHE PATH "Path to CUDA installation") + if(WIN32) + set(CYCLES_CUDA "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v4.0" CACHE PATH "Path to CUDA installation") + else() + set(CYCLES_CUDA "/usr/local/cuda" CACHE PATH "Path to CUDA installation") + endif() 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") -- cgit v1.2.3