-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add VDS examples and fix non-standalone build
- Loading branch information
Showing
51 changed files
with
7,004 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
cmake_minimum_required (VERSION 3.12) | ||
project (HDF5Examples_C_H5VDS C) | ||
|
||
#----------------------------------------------------------------------------- | ||
# Define Sources | ||
#----------------------------------------------------------------------------- | ||
include (C_sourcefiles.cmake) | ||
|
||
#foreach (example_name ${examples}) | ||
#endforeach () | ||
|
||
if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.10") | ||
foreach (example_name ${1_10_examples}) | ||
add_executable (${EXAMPLE_VARNAME}_${example_name} ${PROJECT_SOURCE_DIR}/${example_name}.c) | ||
target_compile_options(${EXAMPLE_VARNAME}_${example_name} | ||
PRIVATE | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_16_API}>:-DH5_USE_16_API>" | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_18_API}>:-DH5_USE_18_API>" | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_110_API}>:-DH5_USE_110_API>" | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_112_API}>:-DH5_USE_112_API>" | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_114_API}>:-DH5_USE_114_API>" | ||
"$<$<BOOL:${${EXAMPLE_VARNAME}_USE_116_API}>:-DH5_USE_116_API>" | ||
) | ||
if (H5_HAVE_PARALLEL) | ||
target_include_directories (${EXAMPLE_VARNAME}_${example_name} PUBLIC ${MPI_C_INCLUDE_DIRS}) | ||
endif () | ||
target_link_libraries (${EXAMPLE_VARNAME}_${example_name} ${H5EX_HDF5_LINK_LIBS}) | ||
if (H5EX_BUILD_TESTING) | ||
add_custom_command ( | ||
TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} | ||
ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/110/${example_name}.tst ${PROJECT_BINARY_DIR}/${example_name}.tst | ||
) | ||
endif () | ||
endforeach () | ||
endif () | ||
|
||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.12") | ||
# foreach (example_name ${1_12_examples}) | ||
# if (H5EX_BUILD_TESTING) | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/112/${example_name}.tst ${PROJECT_BINARY_DIR}/${example_name}.tst | ||
# ) | ||
# endif () | ||
# endforeach () | ||
#endif () | ||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.14") | ||
# foreach (example_name ${1_14_examples}) | ||
# if (H5EX_BUILD_TESTING) | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/114/${example_name}.tst ${PROJECT_BINARY_DIR}/${example_name}.tst | ||
# ) | ||
# endif () | ||
# endforeach () | ||
#endif () | ||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.16") | ||
# foreach (example_name ${1_16_examples}) | ||
# if (H5EX_BUILD_TESTING) | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/116/${example_name}.tst ${PROJECT_BINARY_DIR}/${example_name}.tst | ||
# ) | ||
# endif () | ||
# endforeach () | ||
#endif () | ||
|
||
if (HDF5_BUILD_TOOLS) | ||
# foreach (example_name ${examples}) | ||
# endforeach () | ||
|
||
foreach (example_name ${1_10_examples}) | ||
if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.10") | ||
add_custom_command ( | ||
TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} | ||
ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/110/${example_name}.ddl ${PROJECT_BINARY_DIR}/${example_name}.ddl | ||
) | ||
endif () | ||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.12") | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/112/${example_name}.ddl ${PROJECT_BINARY_DIR}/${example_name}.ddl | ||
# ) | ||
#endif () | ||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.14") | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/114/${example_name}.ddl ${PROJECT_BINARY_DIR}/${example_name}.ddl | ||
# ) | ||
#endif () | ||
#if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.16") | ||
# add_custom_command ( | ||
# TARGET ${EXAMPLE_VARNAME}_${example_name} | ||
# POST_BUILD | ||
# COMMAND ${CMAKE_COMMAND} | ||
# ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/tfiles/116/${example_name}.ddl ${PROJECT_BINARY_DIR}/${example_name}.ddl | ||
# ) | ||
#endif () | ||
endforeach () | ||
|
||
# foreach (example_name ${1_12_examples}) | ||
# endforeach () | ||
# foreach (example_name ${1_14_examples}) | ||
# endforeach () | ||
# foreach (example_name ${1_16_examples}) | ||
# endforeach () | ||
endif () | ||
|
||
if (H5EX_BUILD_TESTING) | ||
macro (ADD_H5_TEST testname) | ||
add_test ( | ||
NAME ${EXAMPLE_VARNAME}_${testname}-clearall | ||
COMMAND ${CMAKE_COMMAND} | ||
-E remove | ||
${testname}*.h5 | ||
) | ||
add_test ( | ||
NAME ${EXAMPLE_VARNAME}_${testname} | ||
COMMAND "${CMAKE_COMMAND}" | ||
-D "TEST_PROGRAM=$<TARGET_FILE:${EXAMPLE_VARNAME}_${testname}>" | ||
-D "TEST_ARGS:STRING=" | ||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}" | ||
-D "TEST_EXPECT=0" | ||
-D "TEST_OUTPUT=${testname}.out" | ||
-D "TEST_REFERENCE=${testname}.tst" | ||
-D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_LIB_DIRECTORY}" | ||
-P "${H5EX_RESOURCES_DIR}/runTest.cmake" | ||
) | ||
set_tests_properties (${EXAMPLE_VARNAME}_${testname} PROPERTIES DEPENDS ${EXAMPLE_VARNAME}_${testname}-clearall) | ||
if (HDF5_BUILD_TOOLS) | ||
add_test ( | ||
NAME ${EXAMPLE_VARNAME}_H5DUMP-${testname} | ||
COMMAND "${CMAKE_COMMAND}" | ||
-D "TEST_PROGRAM=${H5EX_HDF5_DUMP_EXECUTABLE}" | ||
-D "TEST_ARGS:STRING=${ARGN};${testname}.h5" | ||
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}" | ||
-D "TEST_OUTPUT=${testname}.ddl.out" | ||
-D "TEST_EXPECT=0" | ||
-D "TEST_REFERENCE=${testname}.ddl" | ||
-D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_LIB_DIRECTORY}" | ||
-P "${H5EX_RESOURCES_DIR}/runTest.cmake" | ||
) | ||
set_tests_properties (${EXAMPLE_VARNAME}_H5DUMP-${testname} PROPERTIES DEPENDS ${EXAMPLE_VARNAME}_${testname}) | ||
endif () | ||
endmacro () | ||
|
||
foreach (example_name ${examples} ${1_10_examples}) | ||
ADD_H5_TEST (${example_name}) | ||
endforeach () | ||
endif () |
Oops, something went wrong.