mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-27 08:01:04 +08:00
cfd5059e77
* Fixes the broken Autotools option * Removes the "build HL tools" option
13 lines
426 B
CMake
13 lines
426 B
CMake
cmake_minimum_required (VERSION 3.18)
|
|
project (HDF5_HL_TOOLS C)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#-- Option to build the High level GIF Tools
|
|
#-----------------------------------------------------------------------------
|
|
option (HDF5_BUILD_HL_GIF_TOOLS "Build HDF5 HL GIF Tools" OFF)
|
|
if (HDF5_BUILD_HL_GIF_TOOLS)
|
|
add_subdirectory (gif2h5)
|
|
endif ()
|
|
|
|
add_subdirectory (h5watch)
|