summaryrefslogtreecommitdiffstats
path: root/HDF5Examples/C/H5D/C_sourcefiles.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-11-27 21:30:15 (GMT)
committerGitHub <noreply@github.com>2023-11-27 21:30:15 (GMT)
commitfc88fcde1091cf12c1e88c783a14ee0f1cffe31c (patch)
tree91b88b62cd30ed37ee9227e43989e95035be43c3 /HDF5Examples/C/H5D/C_sourcefiles.cmake
parenta067bf71f57723d2dfca7dfe2ffd9ea502eccd4f (diff)
downloadhdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.zip
hdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.tar.gz
hdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.tar.bz2
Develop merge examples (#3851)
* Merge examples repo into library * Change grepTest to be more fault-tolerant * Update examples macro file * Exclude all Fortran examples from doxygen
Diffstat (limited to 'HDF5Examples/C/H5D/C_sourcefiles.cmake')
-rw-r--r--HDF5Examples/C/H5D/C_sourcefiles.cmake38
1 files changed, 38 insertions, 0 deletions
diff --git a/HDF5Examples/C/H5D/C_sourcefiles.cmake b/HDF5Examples/C/H5D/C_sourcefiles.cmake
new file mode 100644
index 0000000..65c19a0
--- /dev/null
+++ b/HDF5Examples/C/H5D/C_sourcefiles.cmake
@@ -0,0 +1,38 @@
+#-----------------------------------------------------------------------------
+# Define Sources, one file per application
+#-----------------------------------------------------------------------------
+set (examples)
+
+set (common_examples
+ h5ex_d_alloc
+ h5ex_d_checksum
+ h5ex_d_chunk
+ h5ex_d_compact
+ h5ex_d_extern
+ h5ex_d_fillval
+ h5ex_d_hyper
+ h5ex_d_rdwr
+ h5ex_d_unlimadd
+ h5ex_d_unlimmod
+)
+
+if (HDF5_ENABLE_Z_LIB_SUPPORT)
+ set (common_examples ${common_examples}
+ h5ex_d_gzip
+ h5ex_d_shuffle
+ h5ex_d_unlimgzip
+ )
+endif ()
+
+if (HDF5_ENABLE_SZIP_SUPPORT)
+ set (common_examples ${common_examples}
+ h5ex_d_szip
+ )
+endif ()
+
+set (1_8_examples
+ h5ex_d_nbit
+ h5ex_d_sofloat
+ h5ex_d_soint
+ h5ex_d_transform
+)