mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-18 17:40:55 +08:00
15 lines
495 B
CMake
15 lines
495 B
CMake
cmake_minimum_required (VERSION 3.18)
|
|
project (HDF5_HL_F90 C Fortran)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# List Source files
|
|
#-----------------------------------------------------------------------------
|
|
add_subdirectory (src)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Testing
|
|
#-----------------------------------------------------------------------------
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif ()
|