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)
|
|
|
|
set_property(TARGET h5fc_chk_idx APPEND PROPERTY INCLUDE_DIRECTORIES "${HDF5_SRC_DIR};${HDF5_BINARY_DIR}")
|
|
|
|
TARGET_C_PROPERTIES (h5fc_chk_idx STATIC " " " ")
|
|
|
|
target_link_libraries (h5fc_chk_idx ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET})
|
|
|
|
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)
|
|
|
|
set_property(TARGET h5fc_gentest APPEND PROPERTY INCLUDE_DIRECTORIES "${HDF5_SRC_DIR};${HDF5_BINARY_DIR}")
|
|
|
|
TARGET_C_PROPERTIES (h5fc_gentest STATIC " " " ")
|
|
|
|
target_link_libraries (h5fc_gentest ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET})
|
|
|
|
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)
|