2015-02-19 00:56:22 +08:00
|
|
|
cmake_minimum_required (VERSION 3.1.0)
|
2010-09-01 04:15:13 +08:00
|
|
|
PROJECT (HDF5_CPP_TEST)
|
2010-05-14 00:01:50 +08:00
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Notes: When creating unit test executables they should be prefixed
|
|
|
|
# with "cpp_". This allows for easier filtering of the test suite when
|
|
|
|
# using ctest. An example would be
|
|
|
|
# ctest -R cpp_
|
|
|
|
# which would only run the C++ based unit tests.
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Define Sources
|
|
|
|
#-----------------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (CPP_TEST_SRCS
|
2010-05-14 00:01:50 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/testhdf5.cpp
|
2016-01-15 23:57:00 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tarray.cpp
|
2010-05-14 00:01:50 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tattr.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tcompound.cpp
|
2014-03-31 00:15:11 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tdspl.cpp
|
2010-05-14 00:01:50 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tfile.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tfilter.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/th5s.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tlinks.cpp
|
2014-04-07 22:11:13 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tobject.cpp
|
2010-05-14 00:01:50 +08:00
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/trefer.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/ttypes.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/tvlstr.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/dsets.cpp
|
|
|
|
${HDF5_CPP_TEST_SOURCE_DIR}/h5cpputil.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Generate the H5srcdir_str.h file containing user settings needed by compilation
|
|
|
|
#-----------------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (srcdir ${CMAKE_CURRENT_SOURCE_DIR})
|
2014-03-12 06:07:13 +08:00
|
|
|
configure_file (${HDF5_CPP_TEST_SOURCE_DIR}/H5srcdir_str.h.in H5srcdir_str.h @ONLY)
|
2010-05-14 00:01:50 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
add_executable (cpp_testhdf5 ${CPP_TEST_SRCS} )
|
2015-08-05 23:56:58 +08:00
|
|
|
TARGET_NAMING (cpp_testhdf5 STATIC)
|
|
|
|
TARGET_C_PROPERTIES (cpp_testhdf5 STATIC " " " ")
|
2014-03-12 05:14:57 +08:00
|
|
|
target_link_libraries (cpp_testhdf5
|
2010-05-14 00:01:50 +08:00
|
|
|
${HDF5_CPP_LIB_TARGET}
|
|
|
|
${HDF5_LIB_TARGET}
|
|
|
|
${HDF5_TEST_LIB_TARGET}
|
|
|
|
)
|
2014-03-12 06:07:13 +08:00
|
|
|
set_target_properties (cpp_testhdf5 PROPERTIES
|
|
|
|
FOLDER test/cpp
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include>"
|
|
|
|
)
|
2010-05-14 00:01:50 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
add_custom_command (
|
2012-08-24 00:07:43 +08:00
|
|
|
TARGET cpp_testhdf5
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_CPP_TEST_SOURCE_DIR}/th5s.h5 ${PROJECT_BINARY_DIR}/th5s.h5
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
include (CMakeTests.cmake)
|