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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-12-07 12:03:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-07 12:03:52 +0400
commitc292bf18be49f7052b716e0eec1b25a87d117394 (patch)
treec609339ffa1279926c0c7ee10269d53394e1f758 /intern
parent9d69115e9217c6b4de76efd3091934eaa255f012 (diff)
correct missing argument error if CYCLES_OPTIMIZED_KERNEL_FLAGS isnt set
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/kernel/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/CMakeLists.txt b/intern/cycles/kernel/CMakeLists.txt
index 601b95d262a..a0803f37cb9 100644
--- a/intern/cycles/kernel/CMakeLists.txt
+++ b/intern/cycles/kernel/CMakeLists.txt
@@ -129,7 +129,7 @@ include_directories(${INC})
add_library(cycles_kernel ${SRC} ${SRC_HEADERS} ${SRC_SVM_HEADERS})
if(WITH_CYCLES_OPTIMIZED_KERNEL)
- SET_SOURCE_FILES_PROPERTIES(kernel_optimized.cpp PROPERTIES COMPILE_FLAGS ${CYCLES_OPTIMIZED_KERNEL_FLAGS})
+ set_source_files_properties(kernel_optimized.cpp PROPERTIES COMPILE_FLAGS "${CYCLES_OPTIMIZED_KERNEL_FLAGS}")
endif()
if(WITH_CYCLES_CUDA)