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 /build_files/cmake/macros.cmake
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 'build_files/cmake/macros.cmake')
-rw-r--r--build_files/cmake/macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 0143335d3b1..07c887979d4 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -431,7 +431,7 @@ function(setup_liblinks
if(WITH_OPENCOLORIO)
target_link_libraries(${target} ${OPENCOLORIO_LIBRARIES})
endif()
- if(WITH_OPENSUBDIV OR WITH_CYCLES_OPENSUBDIV)
+ if(WITH_OPENSUBDIV)
target_link_libraries(${target} ${OPENSUBDIV_LIBRARIES})
endif()
if(WITH_OPENVDB)
@@ -763,7 +763,7 @@ function(SETUP_BLENDER_SORTED_LIBS)
list(APPEND BLENDER_SORTED_LIBS bf_intern_gpudirect)
endif()
- if(WITH_OPENSUBDIV OR WITH_CYCLES_OPENSUBDIV)
+ if(WITH_OPENSUBDIV)
list(APPEND BLENDER_SORTED_LIBS bf_intern_opensubdiv)
endif()