You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
750 B
22 lines
750 B
2 years ago
|
cmake_minimum_required (VERSION 3.18)
|
||
|
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 ()
|