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:
authorlazydodo <github@lazydodo.com>2016-08-08 20:19:41 +0300
committerlazydodo <github@lazydodo.com>2016-08-08 20:19:41 +0300
commit853407152126faaa900486ce343494823b3a7de3 (patch)
tree5fdcb701097fa4f516e95a03b384f9d651e958fa /CMakeLists.txt
parentb745a2401b6ccf75b1e90cf1c8fa648d99c81e29 (diff)
Alembic/ msvc : Link alembic_d.lib instead of alembic.lib when doing debug builds.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74eb61ba1f1..8f0240eb75a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2577,6 +2577,15 @@ else()
unset(_SYSTEM_BIG_ENDIAN)
endif()
+ if(WITH_ALEMBIC)
+ set(ALEMBIC ${LIBDIR}/alembic)
+ set(ALEMBIC_INCLUDE_DIR ${ALEMBIC}/include)
+ set(ALEMBIC_INCLUDE_DIRS ${ALEMBIC_INCLUDE_DIR})
+ set(ALEMBIC_LIBPATH ${ALEMBIC}/lib)
+ set(ALEMBIC_LIBRARIES
+ optimized ${ALEMBIC_LIBPATH}/alembic.lib
+ debug ${ALEMBIC_LIBPATH}/alembic_d.lib)
+ endif(WITH_ALEMBIC)
if(WITH_IMAGE_OPENJPEG)
if(WITH_SYSTEM_OPENJPEG)