hdf5/hl/CMakeLists.txt
Allen Byrne f1e7081cc2
Add Option to not build gif tools and remove javadoc option (#2611)
* Add Option to not build gif tools and remove javadoc option

* Remove old option

* Fix CMake command format
2023-03-20 15:41:53 -07:00

24 lines
548 B
CMake

cmake_minimum_required (VERSION 3.12)
project (HDF5_HL C)
#-----------------------------------------------------------------------------
# List Source files
#-----------------------------------------------------------------------------
add_subdirectory (src)
# Build HDF5 Tools
if (HDF5_BUILD_TOOLS)
add_subdirectory (tools)
endif ()
#-- Add High Level Examples
if (HDF5_BUILD_EXAMPLES)
add_subdirectory (examples)
endif ()
#-- Build the Unit testing if requested
if (BUILD_TESTING AND HDF5_TEST_SERIAL)
add_subdirectory (test)
endif ()