2018-03-10 02:31:58 +08:00
|
|
|
cmake_minimum_required (VERSION 3.10)
|
2018-04-20 23:11:55 +08:00
|
|
|
project (HDF5_TOOLS_TEST C)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5diff tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5diff)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5ls tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5ls)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Misc tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (misc)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5import tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5import)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- h5Repack tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5repack)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5jam tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5jam)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5copy tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5copy)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5stat tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5stat)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5dump tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5dump)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the h5format_convert and test executables
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (h5format_convert)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
#-- Add the perform tests
|
2018-01-31 02:21:01 +08:00
|
|
|
add_subdirectory (perform)
|