2011-12-06 00:19:09 +08:00
|
|
|
cmake_minimum_required (VERSION 2.8.6)
|
2010-05-14 00:01:50 +08:00
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Notes: When creating examples they should be prefixed
|
|
|
|
# with "cpp_ex_". This allows for easier filtering of the examples.
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
PROJECT (HDF5_CPP_EXAMPLES)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Define examples
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
SET (examples
|
|
|
|
create
|
|
|
|
readdata
|
|
|
|
writedata
|
|
|
|
compound
|
|
|
|
extend_ds
|
|
|
|
chunks
|
|
|
|
h5group
|
|
|
|
)
|
|
|
|
|
|
|
|
FOREACH (example ${examples})
|
|
|
|
ADD_EXECUTABLE (cpp_ex_${example} ${HDF5_CPP_EXAMPLES_SOURCE_DIR}/${example}.cpp)
|
2011-02-25 03:43:07 +08:00
|
|
|
TARGET_NAMING (cpp_ex_${example} ${LIB_TYPE})
|
2010-05-14 00:01:50 +08:00
|
|
|
TARGET_LINK_LIBRARIES (cpp_ex_${example} ${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET})
|
2011-10-26 00:52:58 +08:00
|
|
|
SET_TARGET_PROPERTIES (cpp_ex_${example} PROPERTIES FOLDER examples/cpp)
|
2011-03-25 04:07:16 +08:00
|
|
|
ENDFOREACH (example ${examples})
|
2010-09-03 04:58:17 +08:00
|
|
|
|
2011-03-25 04:07:16 +08:00
|
|
|
IF (BUILD_TESTING)
|
|
|
|
# Remove any output file left over from previous test run
|
|
|
|
ADD_TEST (
|
|
|
|
NAME cpp_ex-clear-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-E remove
|
|
|
|
Group.h5
|
|
|
|
SDS.h5
|
|
|
|
SDScompound.h5
|
|
|
|
SDSextendible.h5
|
|
|
|
Select.h5
|
|
|
|
)
|
|
|
|
IF (NOT "${last_test}" STREQUAL "")
|
|
|
|
SET_TESTS_PROPERTIES (cpp_ex-clear-objects PROPERTIES DEPENDS ${last_test})
|
|
|
|
ENDIF (NOT "${last_test}" STREQUAL "")
|
|
|
|
SET (last_test "cpp_ex-clear-objects")
|
2010-09-03 04:58:17 +08:00
|
|
|
|
2011-03-25 04:07:16 +08:00
|
|
|
FOREACH (example ${examples})
|
|
|
|
ADD_TEST (NAME cpp_ex_${example} COMMAND $<TARGET_FILE:cpp_ex_${example}>)
|
|
|
|
IF (NOT "${last_test}" STREQUAL "")
|
|
|
|
SET_TESTS_PROPERTIES (cpp_ex_${example} PROPERTIES DEPENDS ${last_test})
|
|
|
|
ENDIF (NOT "${last_test}" STREQUAL "")
|
|
|
|
SET (last_test "cpp_ex_${example}")
|
|
|
|
ENDFOREACH (example ${examples})
|
|
|
|
ENDIF (BUILD_TESTING)
|