summaryrefslogtreecommitdiffstats
path: root/src/H5FDsubfiling/CMakeLists.txt
blob: 89cd0c267c49fe5861243b2e15193a43ae347f5e (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
cmake_minimum_required (VERSION 3.18)
project (HDF5_H5FD_SUBFILING C)

# Sanity checking
if (NOT H5FD_SOURCES)
  message (FATAL_ERROR "internal configure error - H5FD_SOURCES not set")
endif ()
if (NOT H5FD_HDRS)
  message (FATAL_ERROR "internal configure error - H5FD_HDRS not set")
endif ()
if (NOT H5FD_SUBFILING_DIR)
  message (FATAL_ERROR "internal configure error - H5FD_SUBFILING_DIR not set")
endif ()
if (NOT H5FD_SUBFILING_MERCURY_DIR)
  message (FATAL_ERROR "internal configure error - H5FD_SUBFILING_MERCURY_DIR not set")
endif ()

# Add mercury util sources to Subfiling VFD sources
set (MERCURY_UTIL_SOURCES
  ${H5FD_SUBFILING_MERCURY_DIR}/mercury_thread.c
  ${H5FD_SUBFILING_MERCURY_DIR}/mercury_thread_condition.c
  ${H5FD_SUBFILING_MERCURY_DIR}/mercury_thread_pool.c
  ${H5FD_SUBFILING_MERCURY_DIR}/mercury_thread_mutex.c
)

set (HDF5_H5FD_SUBFILING_SOURCES
  ${H5FD_SUBFILING_DIR}/H5FDioc.c
  ${H5FD_SUBFILING_DIR}/H5FDioc_int.c
  ${H5FD_SUBFILING_DIR}/H5FDioc_threads.c
  ${H5FD_SUBFILING_DIR}/H5FDsubfiling.c
  ${H5FD_SUBFILING_DIR}/H5FDsubfile_int.c
  ${H5FD_SUBFILING_DIR}/H5subfiling_common.c
  ${MERCURY_UTIL_SOURCES}
)

set (HDF5_H5FD_SUBFILING_HEADERS
  ${H5FD_SUBFILING_DIR}/H5FDsubfiling.h
  ${H5FD_SUBFILING_DIR}/H5FDioc.h
)

# Add Subfiling VFD sources to HDF5 library's H5FD sources
set (H5FD_SOURCES
  ${H5FD_SOURCES}
  ${HDF5_H5FD_SUBFILING_SOURCES}
  PARENT_SCOPE
)

# Add Subfiling VFD public headers to HDF5 library's public H5FD headers
set (H5FD_HDRS
  ${H5FD_HDRS}
  ${HDF5_H5FD_SUBFILING_HEADERS}
  PARENT_SCOPE
)