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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-11-26 13:41:38 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-11-26 13:41:38 +0300
commitacd1d1a31d1ac7343f8656dbd3b04c5342f306be (patch)
tree4345f10bb9b8b08d10b8a818f6b42f053028469a /intern/cycles/app/CMakeLists.txt
parent33750e8abbade21813365a7dd62e036969d5006c (diff)
CMake: Remove Cycles specific OpenSubdiv options
Just use one flag which enables OpenSubdiv globally for all the areas of Blender.
Diffstat (limited to 'intern/cycles/app/CMakeLists.txt')
-rw-r--r--intern/cycles/app/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index 2c1367a86dc..ee1ae90ce61 100644
--- a/intern/cycles/app/CMakeLists.txt
+++ b/intern/cycles/app/CMakeLists.txt
@@ -80,7 +80,7 @@ macro(cycles_target_link_libraries target)
if(WITH_CYCLES_EMBREE)
target_link_libraries(${target} ${EMBREE_LIBRARIES})
endif()
- if(WITH_CYCLES_OPENSUBDIV)
+ if(WITH_OPENSUBDIV)
target_link_libraries(${target} ${OPENSUBDIV_LIBRARIES})
endif()
if(WITH_OPENCOLORIO)