mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-05 15:42:32 +08:00
16 lines
419 B
CMake
16 lines
419 B
CMake
cmake_minimum_required (VERSION 3.10)
|
|
project (HDF5_TOOLS C)
|
|
|
|
# --------------------------------------------------------------------
|
|
# If testing was NOT enabled, then we need to build the tools library
|
|
# --------------------------------------------------------------------
|
|
add_subdirectory (lib)
|
|
|
|
#-- Add the test sources
|
|
add_subdirectory (src)
|
|
|
|
#-- Add the tests
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif ()
|