mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
* Choose a size for rdata dimension * Fix platform naming conflicts * Fix doxygen references to point within library repo
23 lines
557 B
CMake
23 lines
557 B
CMake
#-----------------------------------------------------------------------------
|
|
# Define Sources, one file per application
|
|
#-----------------------------------------------------------------------------
|
|
set (examples)
|
|
|
|
set (common_examples
|
|
h5ex_g_create
|
|
h5ex_g_iterate
|
|
h5ex_g_traverse
|
|
)
|
|
|
|
if (HDF5_VERSION_MAJOR VERSION_GREATER_EQUAL "1.8" AND NOT ${EXAMPLE_VARNAME}_USE_16_API)
|
|
set (1_8_examples
|
|
h5ex_g_compact
|
|
h5ex_g_corder
|
|
h5ex_g_phase
|
|
h5ex_g_intermediate
|
|
h5ex_g_visit
|
|
)
|
|
else ()
|
|
set (1_8_examples)
|
|
endif ()
|