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:
authorAnkit Meel <ankitjmeel@gmail.com>2020-09-17 14:40:42 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2020-09-18 16:42:26 +0300
commitb746179d0add695143675ba5b516618f4b294270 (patch)
tree47d262507b3151e19114d182e4e71eec382522f6 /intern/opensubdiv
parentdf126861b25a51baf7d5eaea732a1e61b863af83 (diff)
CMake/OpenSubdiv: Rename INCLUDE_DIR -> INCLUDE_DIRS.
Ref {D8855} Unix and Apple platform files use find_package(OpenSubdiv) which sets `OPENSUBDIV_INCLUDE_DIR` as an advanced variable, as well as `OPENSUBDIV_INCLUDE_DIRS` which should be used usually. Windows sets `OPENSUBDIV_INCLUDE_DIR` which is used by the rest of the code. This patch renames it to `_DIRS` everywhere, for it to be like other similar variables. Reviewed By: brecht Differential Revision: https://developer.blender.org/D8917
Diffstat (limited to 'intern/opensubdiv')
-rw-r--r--intern/opensubdiv/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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}
)