mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
22 lines
750 B
CMake
22 lines
750 B
CMake
cmake_minimum_required (VERSION 3.12)
|
|
project (HDF5_HL_F90 C Fortran)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# List Source files
|
|
#-----------------------------------------------------------------------------
|
|
add_subdirectory (src)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Build the HL Fortran Examples
|
|
#-----------------------------------------------------------------------------
|
|
if (HDF5_BUILD_EXAMPLES)
|
|
add_subdirectory (examples)
|
|
endif ()
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Testing
|
|
#-----------------------------------------------------------------------------
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif ()
|