mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Refactor the cross-compilation infrastructure to rely on the standard
CMAKE_CROSSCOMPILING_EMULATOR variable instead of the custom
CROSSCOMPILING_PATH environment hack.
Key changes:
- Removed `ENVIRONMENT "${CROSSCOMPILING_PATH}"` from all test definitions.
- Updated custom commands (e.g., H5match_types, H5_gen) to invoke the
emulator explicitly when cross-compiling.
- Updated ConfigureChecks.cmake and HDF5UseFortran.cmake to enable
`try_run` checks when an emulator is defined.
- Added config/toolchain/mingw-w64-x86-64-wine.sh wrapper to automatically
locate MinGW runtime libraries (like libgfortran) for Wine execution.
- Cleaned up toolchain files to remove hardcoded emulator paths, deferring
configuration to the build environment.
83 lines
3.2 KiB
CMake
83 lines
3.2 KiB
CMake
cmake_minimum_required (VERSION 3.26)
|
|
project (HDF5Examples_CXX_H5D CXX)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Define Sources
|
|
#-----------------------------------------------------------------------------
|
|
include (C_sourcefiles.cmake)
|
|
|
|
if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.8")
|
|
foreach (example_name ${examples})
|
|
add_executable (${EXAMPLE_VARNAME}_cpp_ex_${example_name} ${PROJECT_SOURCE_DIR}/${example_name}.cpp)
|
|
target_compile_options (${EXAMPLE_VARNAME}_cpp_ex_${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_200_API}>:-DH5_USE_200_API>"
|
|
)
|
|
if (H5_HAVE_PARALLEL)
|
|
target_include_directories (${EXAMPLE_VARNAME}_cpp_ex_${example_name} PUBLIC ${MPI_C_INCLUDE_DIRS})
|
|
endif ()
|
|
target_link_libraries (${EXAMPLE_VARNAME}_cpp_ex_${example_name} ${H5EXAMPLE_HDF5_LINK_LIBS})
|
|
endforeach ()
|
|
endif ()
|
|
|
|
if (H5EXAMPLE_BUILD_TESTING)
|
|
set (${EXAMPLE_VARNAME}_cpp_ex_CLEANFILES
|
|
Group.h5
|
|
SDS.h5
|
|
SDScompound.h5
|
|
SDSextendible.h5
|
|
Select.h5
|
|
)
|
|
add_test (
|
|
NAME ${EXAMPLE_VARNAME}_cpp_ex-clear-objects
|
|
COMMAND ${CMAKE_COMMAND} -E remove ${${EXAMPLE_VARNAME}_cpp_ex_CLEANFILES}
|
|
)
|
|
set_tests_properties (${EXAMPLE_VARNAME}_cpp_ex-clear-objects PROPERTIES
|
|
FIXTURES_SETUP clear_${EXAMPLE_VARNAME}_cpp_ex
|
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
)
|
|
add_test (
|
|
NAME ${EXAMPLE_VARNAME}_cpp_ex-clean-objects
|
|
COMMAND ${CMAKE_COMMAND} -E remove ${${EXAMPLE_VARNAME}_cpp_ex_CLEANFILES}
|
|
)
|
|
set_tests_properties (${EXAMPLE_VARNAME}_cpp_ex-clean-objects PROPERTIES
|
|
FIXTURES_CLEANUP clear_${EXAMPLE_VARNAME}_cpp_ex
|
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
)
|
|
|
|
macro (ADD_H5_TEST testname)
|
|
if (HDF5_ENABLE_USING_MEMCHECKER)
|
|
add_test (NAME ${EXAMPLE_VARNAME}_cpp_ex_${testname} COMMAND $<TARGET_FILE:${EXAMPLE_VARNAME}_cpp_ex_${testname}>)
|
|
else ()
|
|
add_test (
|
|
NAME ${EXAMPLE_VARNAME}_cpp_ex_${testname}
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${EXAMPLE_VARNAME}_cpp_ex_${testname}>"
|
|
-D "TEST_ARGS:STRING="
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}"
|
|
-D "TEST_EXPECT=0"
|
|
-D "TEST_SKIP_COMPARE=TRUE"
|
|
-D "TEST_OUTPUT=${testname}.out"
|
|
-D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_LIB_DIRECTORY}"
|
|
-P "${H5EXAMPLE_RESOURCES_DIR}/runTest.cmake"
|
|
)
|
|
endif ()
|
|
set_tests_properties (${EXAMPLE_VARNAME}_cpp_ex_${testname} PROPERTIES
|
|
FIXTURES_REQUIRED clear_${EXAMPLE_VARNAME}_cpp_ex
|
|
)
|
|
if (last_test)
|
|
set_tests_properties (${EXAMPLE_VARNAME}_cpp_ex_${testname} PROPERTIES DEPENDS ${last_test})
|
|
endif ()
|
|
set (last_test "${EXAMPLE_VARNAME}_cpp_ex_${testname}")
|
|
endmacro ()
|
|
|
|
foreach (example_name ${examples})
|
|
ADD_H5_TEST (${example_name})
|
|
endforeach ()
|
|
endif ()
|