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_H5FC C)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-04-18 04:57:51 +08:00
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Add the h5format_convert test executables
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
add_executable (h5fc_chk_idx ${HDF5_TOOLS_TEST_H5FC_SOURCE_DIR}/h5fc_chk_idx.c)
|
2018-05-10 03:29:44 +08:00
|
|
|
target_include_directories(h5fc_chk_idx PRIVATE "${HDF5_SRC_DIR};${HDF5_BINARY_DIR};$<$<BOOL:${HDF5_ENABLE_PARALLEL}>:${MPI_C_INCLUDE_DIRS}>")
|
2018-04-27 05:41:04 +08:00
|
|
|
TARGET_C_PROPERTIES (h5fc_chk_idx STATIC)
|
|
|
|
target_link_libraries (h5fc_chk_idx PRIVATE ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET})
|
2018-04-18 04:57:51 +08:00
|
|
|
set_target_properties (h5fc_chk_idx PROPERTIES FOLDER tools)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-04-18 04:57:51 +08:00
|
|
|
if (HDF5_BUILD_GENERATORS)
|
|
|
|
add_executable (h5fc_gentest ${HDF5_TOOLS_TEST_H5FC_SOURCE_DIR}/h5fc_gentest.c)
|
2018-05-10 03:29:44 +08:00
|
|
|
target_include_directories(h5fc_gentest PRIVATE "${HDF5_SRC_DIR};${HDF5_BINARY_DIR};$<$<BOOL:${HDF5_ENABLE_PARALLEL}>:${MPI_C_INCLUDE_DIRS}>")
|
2018-04-27 05:41:04 +08:00
|
|
|
TARGET_C_PROPERTIES (h5fc_gentest STATIC)
|
|
|
|
target_link_libraries (h5fc_gentest PRIVATE ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET})
|
2018-04-18 04:57:51 +08:00
|
|
|
set_target_properties (h5fc_gentest PROPERTIES FOLDER generator/tools)
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-04-18 04:57:51 +08:00
|
|
|
#add_test (NAME h5fc_gentest COMMAND $<TARGET_FILE:h5fc_gentest>)
|
|
|
|
endif ()
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-04-18 04:57:51 +08:00
|
|
|
include (CMakeTests.cmake)
|