2018-03-10 02:31:58 +08:00
|
|
|
cmake_minimum_required (VERSION 3.10)
|
2018-04-20 23:11:55 +08:00
|
|
|
project (HDF5_CPP_EXAMPLES CXX)
|
2017-01-11 07:09:53 +08:00
|
|
|
|
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.
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Define examples
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
set (examples
|
2010-05-14 00:01:50 +08:00
|
|
|
create
|
|
|
|
readdata
|
|
|
|
writedata
|
|
|
|
compound
|
|
|
|
extend_ds
|
|
|
|
chunks
|
|
|
|
h5group
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
set (tutr_examples
|
2013-10-01 01:49:05 +08:00
|
|
|
h5tutr_cmprss
|
|
|
|
h5tutr_crtdat
|
|
|
|
h5tutr_crtatt
|
|
|
|
h5tutr_crtgrpar
|
|
|
|
h5tutr_crtgrp
|
|
|
|
h5tutr_crtgrpd
|
|
|
|
h5tutr_extend
|
|
|
|
h5tutr_rdwt
|
|
|
|
h5tutr_subset
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (example ${examples})
|
|
|
|
add_executable (cpp_ex_${example} ${HDF5_CPP_EXAMPLES_SOURCE_DIR}/${example}.cpp)
|
2018-05-10 03:29:44 +08:00
|
|
|
target_include_directories(cpp_ex_${example} 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 (cpp_ex_${example} STATIC)
|
|
|
|
target_link_libraries (cpp_ex_${example} PRIVATE ${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET})
|
2014-03-12 05:14:57 +08:00
|
|
|
set_target_properties (cpp_ex_${example} PROPERTIES FOLDER examples/cpp)
|
2017-01-11 07:09:53 +08:00
|
|
|
endforeach ()
|
2010-09-03 04:58:17 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (example ${tutr_examples})
|
|
|
|
add_executable (cpp_ex_${example} ${HDF5_CPP_EXAMPLES_SOURCE_DIR}/${example}.cpp)
|
2018-05-10 03:29:44 +08:00
|
|
|
target_include_directories(cpp_ex_${example} 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 (cpp_ex_${example} STATIC)
|
|
|
|
target_link_libraries (cpp_ex_${example} PRIVATE ${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET})
|
2014-03-12 05:14:57 +08:00
|
|
|
set_target_properties (cpp_ex_${example} PROPERTIES FOLDER examples/cpp)
|
2017-01-11 07:09:53 +08:00
|
|
|
endforeach ()
|
2013-10-01 01:49:05 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
if (BUILD_TESTING)
|
|
|
|
include (CMakeTests.cmake)
|
2017-01-11 07:09:53 +08:00
|
|
|
endif ()
|