blob: aae261e77656d9efe47b906f571f27e3fb103948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
cmake_minimum_required (VERSION 2.8.11)
PROJECT (HDF5_EXAMPLES)
#-----------------------------------------------------------------------------
# Apply Definitions to compiler in this directory and below
#-----------------------------------------------------------------------------
add_definitions (${HDF_EXTRA_C_FLAGS})
#-----------------------------------------------------------------------------
# Define Sources
#-----------------------------------------------------------------------------
set (examples
h5_crtdat
h5_rdwt
h5_crtatt
h5_crtgrp
h5_crtgrpar
h5_crtgrpd
h5_cmprss
h5_extend
h5_subset
h5_write
h5_read
h5_extend_write
h5_chunk_read
h5_compound
h5_group
h5_select
h5_attribute
h5_mount
h5_reference
h5_drivers
h5_ref2reg
h5_extlink
h5_elink_unix2win
h5_shared_mesg
h5_external_log_native_vol
)
foreach (example ${examples})
add_executable (${example} ${HDF5_EXAMPLES_SOURCE_DIR}/${example}.c)
TARGET_NAMING (${example} ${LIB_TYPE})
TARGET_C_PROPERTIES (${example} " " " ")
target_link_libraries (${example} ${HDF5_LIB_TARGET})
set_target_properties (${example} PROPERTIES FOLDER examples)
endforeach (example ${examples})
if (H5_HAVE_PARALLEL)
add_executable (ph5example ${HDF5_EXAMPLES_SOURCE_DIR}/ph5example.c)
TARGET_NAMING (ph5example ${LIB_TYPE})
TARGET_C_PROPERTIES (ph5example " " " ")
target_link_libraries (ph5example ${HDF5_LIB_TARGET})
set_target_properties (ph5example PROPERTIES FOLDER examples)
endif (H5_HAVE_PARALLEL)
#if (H5_HAVE_EFF)
# add_executable (h5ff_server ${HDF5_EXAMPLES_SOURCE_DIR}/h5ff_server.c)
# target_link_libraries (h5ff_server ${HDF5_LIB_TARGET})
# set_target_properties (h5ff_server PROPERTIES FOLDER examples)
# add_executable (h5ff_client ${HDF5_EXAMPLES_SOURCE_DIR}/h5ff_client.c)
# target_link_libraries (h5ff_client ${HDF5_LIB_TARGET})
# set_target_properties (h5ff_client PROPERTIES FOLDER examples)
# add_executable (h5ff_client_do ${HDF5_EXAMPLES_SOURCE_DIR}/h5ff_client_do.c)
# target_link_libraries (h5ff_client_do ${HDF5_LIB_TARGET})
# set_target_properties (h5ff_client_do PROPERTIES FOLDER examples)
# add_executable (h5ff_client_map ${HDF5_EXAMPLES_SOURCE_DIR}/h5ff_client_map.c)
# target_link_libraries (h5ff_client_map ${HDF5_LIB_TARGET})
# set_target_properties (h5ff_client_map PROPERTIES FOLDER examples)
# add_executable (h5ff_client_old_api ${HDF5_EXAMPLES_SOURCE_DIR}/h5ff_client_old_api.c)
# target_link_libraries (h5ff_client_old_api ${HDF5_LIB_TARGET})
# set_target_properties (h5ff_client_old_api PROPERTIES FOLDER examples)
#endif (H5_HAVE_EFF)
if (BUILD_TESTING)
include (CMakeTests.cmake)
endif (BUILD_TESTING)
|