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:
authorRay Molenkamp <github@lazydodo.com>2020-04-02 16:03:36 +0300
committerRay Molenkamp <github@lazydodo.com>2020-04-02 16:03:36 +0300
commit7bffdab93c40d6de0410f767cdb24ebe1e478344 (patch)
tree4a25ac8dc41ed79a53363d6e0db41fa1f1df47e1 /CMakeLists.txt
parent53d029d6daaa79ed2eb3e647a7c1313e47953fda (diff)
CMake: Add alembic boost dependency
When building lite + alembic + boost cmake would turn boost off because it deemed it not needed leading to build errors.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a781488002a..5fb0393dcda 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -633,9 +633,10 @@ set_and_warn_dependency(WITH_BOOST WITH_OPENVDB OFF)
set_and_warn_dependency(WITH_BOOST WITH_OPENCOLORIO OFF)
set_and_warn_dependency(WITH_BOOST WITH_QUADRIFLOW OFF)
set_and_warn_dependency(WITH_BOOST WITH_USD OFF)
+set_and_warn_dependency(WITH_BOOST WITH_ALEMBIC OFF)
if(WITH_BOOST AND NOT (WITH_CYCLES OR WITH_OPENIMAGEIO OR WITH_INTERNATIONAL OR
- WITH_OPENVDB OR WITH_OPENCOLORIO OR WITH_USD))
+ WITH_OPENVDB OR WITH_OPENCOLORIO OR WITH_USD OR WITH_ALEMBIC))
message(STATUS "No dependencies need 'WITH_BOOST' forcing WITH_BOOST=OFF")
set(WITH_BOOST OFF)
endif()