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:
-rw-r--r--build_files/cmake/platform/platform_win32.cmake2
-rw-r--r--intern/cycles/CMakeLists.txt2
-rw-r--r--intern/opensubdiv/CMakeLists.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/build_files/cmake/platform/platform_win32.cmake b/build_files/cmake/platform/platform_win32.cmake
index d49b576ba1a..899da59324f 100644
--- a/build_files/cmake/platform/platform_win32.cmake
+++ b/build_files/cmake/platform/platform_win32.cmake
@@ -565,7 +565,7 @@ if(WITH_IMAGE_OPENJPEG)
endif()
if(WITH_OPENSUBDIV)
- set(OPENSUBDIV_INCLUDE_DIR ${LIBDIR}/opensubdiv/include)
+ set(OPENSUBDIV_INCLUDE_DIRS ${LIBDIR}/opensubdiv/include)
set(OPENSUBDIV_LIBPATH ${LIBDIR}/opensubdiv/lib)
set(OPENSUBDIV_LIBRARIES
optimized ${OPENSUBDIV_LIBPATH}/osdCPU.lib
diff --git a/intern/cycles/CMakeLists.txt b/intern/cycles/CMakeLists.txt
index f420b1faf81..f9987ea8c0d 100644
--- a/intern/cycles/CMakeLists.txt
+++ b/intern/cycles/CMakeLists.txt
@@ -274,7 +274,7 @@ if(WITH_OPENSUBDIV)
add_definitions(-DWITH_OPENSUBDIV)
include_directories(
SYSTEM
- ${OPENSUBDIV_INCLUDE_DIR}
+ ${OPENSUBDIV_INCLUDE_DIRS}
)
endif()
diff --git a/intern/opensubdiv/CMakeLists.txt b/intern/opensubdiv/CMakeLists.txt
index ea48a387bbd..16334a80761 100644
--- a/intern/opensubdiv/CMakeLists.txt
+++ b/intern/opensubdiv/CMakeLists.txt
@@ -45,7 +45,7 @@ if(WITH_OPENSUBDIV)
endmacro()
list(APPEND INC_SYS
- ${OPENSUBDIV_INCLUDE_DIR}
+ ${OPENSUBDIV_INCLUDE_DIRS}
${GLEW_INCLUDE_PATH}
)