mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-27 08:01:04 +08:00
29 lines
1.3 KiB
CMake
29 lines
1.3 KiB
CMake
cmake_minimum_required (VERSION 3.1.0)
|
|
PROJECT (HDF5_TOOLS_TEST_H5FC)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Setup include Directories
|
|
#-----------------------------------------------------------------------------
|
|
INCLUDE_DIRECTORIES (${HDF5_TOOLS_DIR}/lib)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Add the h5format_convert test executables
|
|
# --------------------------------------------------------------------
|
|
add_executable (h5fc_chk_idx ${HDF5_TOOLS_TEST_H5FC_SOURCE_DIR}/h5fc_chk_idx.c)
|
|
TARGET_NAMING (h5fc_chk_idx STATIC)
|
|
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)
|
|
|
|
if (HDF5_BUILD_GENERATORS)
|
|
add_executable (h5fc_gentest ${HDF5_TOOLS_TEST_H5FC_SOURCE_DIR}/h5fc_gentest.c)
|
|
TARGET_NAMING (h5fc_gentest STATIC)
|
|
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)
|
|
|
|
#add_test (NAME h5fc_gentest COMMAND $<TARGET_FILE:h5fc_gentest>)
|
|
endif (HDF5_BUILD_GENERATORS)
|
|
|
|
include (CMakeTests.cmake)
|