Files
CMake/Tests/FindHDF5/Test/test_Fortran.f90
Brad King 75bb2a2ee4 Tests: Extend FindHDF5 tests to link and run executables
Verify that this works using both targets and variables.
2023-03-30 15:05:59 -04:00

7 lines
97 B
Fortran

program hdf5_hello
use hdf5
integer error
call h5open_f(error)
call h5close_f(error)
end