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:
authorSybren A. Stüvel <sybren@blender.org>2020-06-15 12:55:40 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-06-15 12:58:58 +0300
commit0102b9d47edfeea003adf7eec3077425ff065d6e (patch)
treee6f244fb1229c488bbdc8f2389cf56ea823a2852 /build_files/cmake/platform/platform_unix.cmake
parent76ebc608af7a89d2e9919d67ec6b639d47f70c1a (diff)
Alembic: remove HDF5 support from CMake files
This is a follup to 0c384362272. No functional changes to Blender, just the build scripts.
Diffstat (limited to 'build_files/cmake/platform/platform_unix.cmake')
-rw-r--r--build_files/cmake/platform/platform_unix.cmake8
1 files changed, 1 insertions, 7 deletions
diff --git a/build_files/cmake/platform/platform_unix.cmake b/build_files/cmake/platform/platform_unix.cmake
index 6e00a2dec7b..96244b65f21 100644
--- a/build_files/cmake/platform/platform_unix.cmake
+++ b/build_files/cmake/platform/platform_unix.cmake
@@ -265,14 +265,8 @@ endif()
if(WITH_ALEMBIC)
find_package_wrapper(Alembic)
- if(WITH_ALEMBIC_HDF5)
- set(HDF5_ROOT_DIR ${LIBDIR}/hdf5)
- find_package_wrapper(HDF5)
- endif()
-
- if(NOT ALEMBIC_FOUND OR (WITH_ALEMBIC_HDF5 AND NOT HDF5_FOUND))
+ if(NOT ALEMBIC_FOUND)
set(WITH_ALEMBIC OFF)
- set(WITH_ALEMBIC_HDF5 OFF)
endif()
endif()