We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f86b4f commit 0af437aCopy full SHA for 0af437a
utils/CMakeLists.txt
@@ -7,8 +7,12 @@ endif ()
7
8
option (HDF5_BUILD_UTILS "Build HDF5 Utils" ON)
9
if (HDF5_BUILD_UTILS)
10
- add_subdirectory (mirror_vfd)
11
- add_subdirectory (subfiling_vfd)
+ if (HDF5_ENABLE_MIRROR_VFD)
+ add_subdirectory (mirror_vfd)
12
+ endif ()
13
+ if (HDF5_ENABLE_SUBFILING_VFD)
14
+ add_subdirectory (subfiling_vfd)
15
16
endif ()
17
18
#-- Add the h5dwalk and test executables
0 commit comments