forked from openPMD/openPMD-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
executable file
·428 lines (376 loc) · 13.4 KB
/
CMakeLists.txt
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# Preamble ####################################################################
#
cmake_minimum_required(VERSION 3.10.0)
project(openPMD VERSION 0.1.0) # LANGUAGES CXX
# the openPMD "markup"/"schema" standard version
set(openPMD_STANDARD_VERSION 1.1.0)
set(CMAKE_MODULE_PATH "${openPMD_SOURCE_DIR}/cmake")
# Force C++11
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED True)
# Project structure ###########################################################
#
# temporary build directories
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
# install directories
set(CMAKE_INSTALL_BINDIR bin)
set(CMAKE_INSTALL_LIBDIR lib)
set(CMAKE_INSTALL_INCLUDEDIR include)
set(CMAKE_INSTALL_CMAKEDIR lib/cmake/openPMD)
# Options and Variants ########################################################
#
function(openpmd_option name description default)
set(openPMD_USE_${name} ${default} CACHE STRING "${description}")
set_property(CACHE openPMD_USE_${name} PROPERTY
STRINGS "ON;TRUE;AUTO;OFF;FALSE"
)
if(openPMD_HAVE_${name})
set(openPMD_HAVE_${name} TRUE)
else()
set(openPMD_HAVE_${name})
endif()
set(openPMD_CONFIG_OPTIONS ${openPMD_CONFIG_OPTIONS} ${name} PARENT_SCOPE)
endfunction()
openpmd_option(MPI "Enable MPI support" AUTO)
openpmd_option(HDF5 "Enable HDF5 support" AUTO)
openpmd_option(ADIOS1 "Enable ADIOS1 support" OFF)
openpmd_option(ADIOS2 "Enable ADIOS2 support" OFF)
# openpmd_option(JSON "Enable JSON support" AUTO)
# openpmd_option(PYTHON "Enable Python bindings" OFF)
option(openPMD_USE_INTERNAL_VARIANT "Use internally shipped MPark.Variant" ON)
set(CMAKE_CONFIGURATION_TYPES "Release;Debug;MinSizeRel;RelWithDebInfo")
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING
"Choose the build type, e.g. Release or Debug." FORCE)
endif()
if (CMAKE_BUILD_TYPE STREQUAL Debug)
# TODO: add directly to targets
add_definitions(-DDEBUG)
endif()
# Warnings ####################################################################
#
# TODO: LEGACY! Use CMake TOOLCHAINS instead!
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address,memory,undefined")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-weak-vtables -Wno-padded -Wno-switch-enum -Wno-undefined-func-template")
#Silence BOOST_TEST
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-disabled-macro-expansion -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-conversion")
#Silence HDF5
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reserved-id-macro -Wno-deprecated -Wno-old-style-cast")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-cpp")
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic")
#silence BOOST filesystem
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-cpp")
endif ()
# Dependencies ################################################################
#
# external library: Boost (mandatory)
find_package(Boost 1.62.0 REQUIRED
COMPONENTS system filesystem unit_test_framework)
# external library: MPI (optional)
if(openPMD_USE_MPI STREQUAL AUTO)
find_package(MPI)
if(MPI_FOUND)
set(openPMD_HAVE_MPI TRUE)
else()
set(openPMD_HAVE_MPI FALSE)
endif()
elseif(openPMD_USE_MPI)
find_package(MPI REQUIRED)
set(openPMD_HAVE_MPI TRUE)
else()
set(openPMD_HAVE_MPI FALSE)
endif()
# external library: HDF5 (optional)
if(openPMD_USE_HDF5 STREQUAL AUTO)
set(HDF5_PREFER_PARALLEL ${openPMD_HAVE_MPI})
find_package(HDF5 1.8.6 COMPONENTS C)
if(HDF5_FOUND)
set(openPMD_HAVE_HDF5 TRUE)
else()
set(openPMD_HAVE_HDF5 FALSE)
endif()
elseif(openPMD_USE_HDF5)
set(HDF5_PREFER_PARALLEL ${openPMD_HAVE_MPI})
find_package(HDF5 1.8.6 REQUIRED COMPONENTS C)
set(openPMD_HAVE_HDF5 TRUE)
else()
set(openPMD_HAVE_HDF5 FALSE)
endif()
# we imply support for parallel I/O if MPI variant is ON
if(openPMD_HAVE_MPI AND openPMD_HAVE_HDF5 AND NOT HDF5_IS_PARALLEL)
message(FATAL_ERROR
"Found MPI but only serial version of HDF5. Either set "
"openPMD_USE_MPI=OFF to disable MPI or set openPMD_USE_HDF5=OFF "
"to disable HDF5 or provide a parallel install of HDF5.")
endif()
# HDF5 includes mpi.h in the public header H5public.h if HDF5_IS_PARALLEL
if(HDF5_IS_PARALLEL AND NOT openPMD_HAVE_MPI)
message(FATAL_ERROR
"Found only parallel version of HDF5 but no MPI. Either set "
"openPMD_USE_MPI=ON to force using MPI or set openPMD_USE_HDF5=OFF "
"to disable HDF5 or provide a serial install of HDF5.")
endif()
# external library: ADIOS1 (optional)
set(ADIOS1_PREFER_COMPONENTS )
if(openPMD_HAVE_MPI)
set(ADIOS1_PREFER_COMPONENTS sequential)
endif()
if(openPMD_USE_ADIOS1 STREQUAL AUTO)
find_package(ADIOS 1.10.0 COMPONENTS ${ADIOS1_PREFER_COMPONENTS})
if(ADIOS_FOUND)
set(openPMD_HAVE_ADIOS1 TRUE)
else()
set(openPMD_HAVE_ADIOS1 FALSE)
endif()
elseif(openPMD_USE_ADIOS1)
find_package(ADIOS 1.10.0 REQUIRED COMPONENTS ${ADIOS1_PREFER_COMPONENTS})
set(openPMD_HAVE_ADIOS1 TRUE)
else()
set(openPMD_HAVE_ADIOS1 FALSE)
endif()
# TODO: check!
#if(openPMD_HAVE_MPI AND openPMD_HAVE_ADIOS AND ADIOS_HAVE_SEQUENTIAL)
# message(FATAL_ERROR "Found MPI but requested ADIOS1 is serial."
# "Set openPMD_USE_MPI=OFF to disable MPI.")
#endif()
# external library: ADIOS2 (optional)
if(openPMD_USE_ADIOS2 STREQUAL AUTO)
find_package(ADIOS2 2.1.0)
if(ADIOS2_FOUND)
set(openPMD_HAVE_ADIOS2 TRUE)
else()
set(openPMD_HAVE_ADIOS2 FALSE)
endif()
elseif(openPMD_USE_ADIOS2)
find_package(ADIOS2 2.1.0 REQUIRED)
set(openPMD_HAVE_ADIOS2 TRUE)
else()
set(openPMD_HAVE_ADIOS2 FALSE)
endif()
# TODO: Check if ADIOS2 is parallel when openPMD_HAVE_MPI is ON
# Targets #####################################################################
#
set(CORE_SOURCE
src/Dataset.cpp
src/Datatype.cpp
src/Iteration.cpp
src/IterationEncoding.cpp
src/Mesh.cpp
src/ParticlePatches.cpp
src/ParticleSpecies.cpp
src/Record.cpp
src/RecordComponent.cpp
src/Series.cpp
src/backend/Attributable.cpp
src/backend/BaseRecordComponent.cpp
src/backend/GenericPatchData.cpp
src/backend/MeshRecordComponent.cpp
src/backend/PatchRecord.cpp
src/backend/PatchRecordComponent.cpp
src/backend/Writable.cpp)
set(IO_SOURCE
src/IO/AbstractIOHandler.cpp
src/IO/IOTask.cpp
src/IO/ADIOS/ADIOS1IOHandler.cpp
src/IO/ADIOS/ParallelADIOS1IOHandler.cpp
src/IO/ADIOS/ADIOS2IOHandler.cpp
src/IO/HDF5/HDF5IOHandler.cpp
src/IO/HDF5/ParallelHDF5IOHandler.cpp)
# library
add_Library(openPMD ${CORE_SOURCE} ${IO_SOURCE})
# properties
set_target_properties(openPMD PROPERTIES
POSITION_INDEPENDENT_CODE ON
)
# own headers
target_include_directories(openPMD PUBLIC
$<BUILD_INTERFACE:${openPMD_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${openPMD_BINARY_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# C++11 std::variant (C++17 stdlib preview)
if(openPMD_USE_INTERNAL_VARIANT)
message(STATUS "MPark.Variant: Using INTERNAL version 1.3.0")
else()
find_package(mpark_variant 1.3.0 REQUIRED)
target_link_libraries(openPMD PUBLIC mpark_variant)
endif()
if(TARGET Boost::filesystem)
target_link_libraries(openPMD PUBLIC
Boost::boost Boost::system Boost::filesystem)
else()
target_link_libraries(openPMD PUBLIC
${Boost_LIBRARIES})
target_include_directories(openPMD SYSTEM PUBLIC ${Boost_INCLUDE_DIRS})
endif()
if(openPMD_HAVE_MPI)
# MPI targets: CMake 3.9+
# note: often the PUBLIC dependency to CXX is missing in C targets...
target_link_libraries(openPMD PUBLIC MPI::MPI_C MPI::MPI_CXX)
target_compile_definitions(openPMD PUBLIC "-DopenPMD_HAVE_MPI=1")
endif()
if(openPMD_HAVE_HDF5)
target_link_libraries(openPMD PUBLIC ${HDF5_LIBRARIES})
target_include_directories(openPMD SYSTEM PUBLIC ${HDF5_INCLUDE_DIRS})
target_compile_definitions(openPMD PUBLIC ${HDF5_DEFINITIONS})
target_compile_definitions(openPMD PUBLIC "-DopenPMD_HAVE_HDF5=1")
endif()
if(openPMD_HAVE_ADIOS1)
target_link_libraries(openPMD PUBLIC ${ADIOS_LIBRARIES})
target_include_directories(openPMD SYSTEM PUBLIC ${ADIOS_INCLUDE_DIRS})
target_compile_definitions(openPMD PUBLIC "-DopenPMD_HAVE_ADIOS1=1")
endif()
if(openPMD_HAVE_ADIOS2)
target_link_libraries(openPMD PUBLIC ADIOS2::ADIOS2)
target_compile_definitions(openPMD PUBLIC "-DopenPMD_HAVE_ADIOS2=1")
endif()
# tests
set(openPMD_TEST_NAMES
Core
Auxiliary
SerialIO
#ParallelIO
)
# examples
set(openPMD_EXAMPLE_NAMES
1_structure
2_read_serial
3_write_serial
4_read_parallel
5_write_parallel
6_dump_filebased_series
7_extended_write_serial
)
foreach(testname ${openPMD_TEST_NAMES})
add_executable(${testname}Tests test/${testname}Test.cpp)
if(openPMD_HAVE_MPI)
target_compile_definitions(${testname}Tests PUBLIC "-DopenPMD_HAVE_MPI=1")
else()
target_compile_definitions(${testname}Tests PUBLIC "-D_NOMPI=1")
endif()
if(openPMD_HAVE_HDF5)
target_compile_definitions(${testname}Tests PUBLIC "-DopenPMD_HAVE_HDF5=1")
endif()
if(openPMD_HAVE_ADIOS1)
target_compile_definitions(${testname}Tests PUBLIC "-DopenPMD_HAVE_ADIOS1=1")
endif()
if(openPMD_HAVE_ADIOS2)
target_compile_definitions(${testname}Tests PUBLIC "-DopenPMD_HAVE_ADIOS2=1")
endif()
target_link_libraries(${testname}Tests PRIVATE openPMD)
if(TARGET Boost::unit_test_framework)
target_link_libraries(${testname}Tests PRIVATE Boost::unit_test_framework)
endif()
endforeach()
foreach(examplename ${openPMD_EXAMPLE_NAMES})
if(${examplename} MATCHES ".+parallel$")
if(openPMD_HAVE_MPI)
add_executable(${examplename} examples/${examplename}.cpp)
target_link_libraries(${examplename} PRIVATE openPMD)
endif()
else()
add_executable(${examplename} examples/${examplename}.cpp)
target_link_libraries(${examplename} PRIVATE openPMD)
endif()
endforeach()
# Generate Files with Configuration Options ###################################
#
# TODO configure a version.hpp
configure_file(
${openPMD_SOURCE_DIR}/openPMDConfig.cmake.in
${openPMD_BINARY_DIR}/openPMDConfig.cmake
@ONLY
)
include(CMakePackageConfigHelpers)
write_basic_package_version_file("openPMDConfigVersion.cmake"
VERSION ${openPMD_VERSION}
COMPATIBILITY SameMajorVersion
)
# Installs ####################################################################
#
# headers, libraries and exectuables
install(TARGETS openPMD EXPORT openPMDTargets
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include
)
install(DIRECTORY "${openPMD_SOURCE_DIR}/include/."
DESTINATION include
PATTERN ".svn" EXCLUDE
PATTERN ".git" EXCLUDE
)
# CMake package file for find_package(openPMD::openPMD) in depending projects
install(EXPORT openPMDTargets
FILE openPMDTargets.cmake
NAMESPACE openPMD::
DESTINATION lib/cmake/openPMD
)
install(
FILES
${openPMD_BINARY_DIR}/openPMDConfig.cmake
${openPMD_BINARY_DIR}/openPMDConfigVersion.cmake
DESTINATION lib/cmake/openPMD
)
# Tests #######################################################################
#
enable_testing()
# OpenMPI root guard: https://github.com/open-mpi/ompi/issues/4451
if("$ENV{USER}" STREQUAL "root")
set(MPI_ALLOW_ROOT --allow-run-as-root)
endif()
set(MPI_TEST_EXE
${MPIEXEC_EXECUTABLE}
${MPI_ALLOW_ROOT}
${MPIEXEC_NUMPROC_FLAG} 2
)
foreach(testname ${openPMD_TEST_NAMES})
if(${testname} MATCHES "^Parallel.*$")
if(openPMD_HAVE_MPI)
add_test(NAME MPI.${testname}
COMMAND ${MPI_TEST_EXE} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${testname}Tests
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
)
endif()
else()
add_test(NAME Serial.${testname}
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${testname}Tests
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
)
endif()
endforeach()
#foreach(examplename ${openPMD_EXAMPLE_NAMES})
# add_test(${examplename} ${examplename})
#endforeach()
# Status Message for Build Options ############################################
#
message("")
message("openPMD build configuration:")
message(" library Version: ${openPMD_VERSION}")
message(" openPMD Standard: ${openPMD_STANDARD_VERSION}")
message(" C++ Compiler : ${CMAKE_CXX_COMPILER_ID} "
"${CMAKE_CXX_COMPILER_VERSION} "
"${CMAKE_CXX_COMPILER_WRAPPER}")
message(" ${CMAKE_CXX_COMPILER}")
message("")
message(" Installation prefix: ${CMAKE_INSTALL_PREFIX}")
message(" bin: ${CMAKE_INSTALL_BINDIR}")
message(" lib: ${CMAKE_INSTALL_LIBDIR}")
message(" include: ${CMAKE_INSTALL_INCLUDEDIR}")
message(" cmake: ${CMAKE_INSTALL_CMAKEDIR}")
message("")
message(" Build Type: ${CMAKE_BUILD_TYPE}")
message(" Build Options:")
foreach(opt IN LISTS openPMD_CONFIG_OPTIONS)
if(${openPMD_HAVE_${opt}})
message(" ${opt}: ON")
else()
message(" ${opt}: OFF")
endif()
endforeach()
message("")