forked from ECP-WarpX/impactx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
280 lines (223 loc) · 8.68 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
# Preamble ####################################################################
#
cmake_minimum_required(VERSION 3.20.0)
project(ImpactX VERSION 21.10)
include(${ImpactX_SOURCE_DIR}/cmake/ImpactXFunctions.cmake)
# In-source tree builds are messy and can screw up the build system.
# Avoid building at least in the same dir as the root dir:
if(CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
message(FATAL_ERROR "Building in-source is not supported! "
"Create a build directory and remove "
"${CMAKE_SOURCE_DIR}/CMakeCache.txt ${CMAKE_SOURCE_DIR}/CMakeFiles/")
endif()
# CMake policies ##############################################################
#
# none needed right now
# CCache Support ##############################################################
#
# this is an optional tool that stores compiled object files; allows fast
# re-builds even with "make clean" in between. Mainly used to store AMReX
# objects
set_ccache()
# Output Directories ##########################################################
#
# temporary build directories
set_default_build_dirs()
# install directories
set_default_install_dirs()
# Options and Variants ########################################################
#
include(CMakeDependentOption)
option(ImpactX_APP "Build the ImpactX executable application" ON)
option(ImpactX_LIB "Build ImpactX as a shared library" OFF)
option(ImpactX_MPI "Multi-node support (message-passing)" ON)
option(ImpactX_OPENPMD "openPMD I/O (HDF5, ADIOS)" OFF)
set(ImpactX_PRECISION_VALUES SINGLE DOUBLE)
set(ImpactX_PRECISION DOUBLE CACHE STRING "Floating point precision (SINGLE/DOUBLE)")
set_property(CACHE ImpactX_PRECISION PROPERTY STRINGS ${ImpactX_PRECISION_VALUES})
if(NOT ImpactX_PRECISION IN_LIST ImpactX_PRECISION_VALUES)
message(FATAL_ERROR "ImpactX_PRECISION (${ImpactX_PRECISION}) must be one of ${ImpactX_PRECISION_VALUES}")
endif()
set(ImpactX_COMPUTE_VALUES NOACC OMP CUDA SYCL HIP)
set(ImpactX_COMPUTE OMP CACHE STRING "On-node, accelerated computing backend (NOACC/OMP/CUDA/SYCL/HIP)")
set_property(CACHE ImpactX_COMPUTE PROPERTY STRINGS ${ImpactX_COMPUTE_VALUES})
if(NOT ImpactX_COMPUTE IN_LIST ImpactX_COMPUTE_VALUES)
message(FATAL_ERROR "ImpactX_COMPUTE (${ImpactX_COMPUTE}) must be one of ${ImpactX_COMPUTE_VALUES}")
endif()
option(ImpactX_MPI_THREAD_MULTIPLE "MPI thread-multiple support, i.e. for async_io" ON)
mark_as_advanced(ImpactX_MPI_THREAD_MULTIPLE)
option(ImpactX_amrex_internal "Download & build AMReX" ON)
# change the default build type to Release (or RelWithDebInfo) instead of Debug
set_default_build_type("Release")
# Option to enable interprocedural optimization
# (also know as "link-time optimization" or "whole program optimization")
option(ImpactX_IPO "Compile ImpactX with interprocedural optimization (will take more time)" OFF)
# this defined the variable BUILD_TESTING which is ON by default
#include(CTest)
# Dependencies ################################################################
#
# AMReX
# builds AMReX from source (default) or finds an existing install
include(${ImpactX_SOURCE_DIR}/cmake/dependencies/AMReX.cmake)
# suppress warnings in AMReX headers (use -isystem instead of -I)
make_third_party_includes_system(AMReX::amrex AMReX)
# ABLASTR
# TODO
# openPMD
# builds openPMD-api from source (default) or finds an existing install
include(${ImpactX_SOURCE_DIR}/cmake/dependencies/openPMD.cmake)
# Targets #####################################################################
#
if(NOT ImpactX_APP AND NOT ImpactX_LIB)
message(FATAL_ERROR "Need to build at least ImpactX app or "
"library/Python bindings")
endif()
# collect all objects for compilation
add_library(ImpactX OBJECT)
set(_ALL_TARGETS ImpactX)
# executable application
# note: we currently avoid a dependency on a core library
# for simpler usage, but could make this an option
if(ImpactX_APP)
add_executable(app)
add_executable(ImpactX::app ALIAS app)
target_link_libraries(app PRIVATE ImpactX)
set(_BUILDINFO_SRC app)
list(APPEND _ALL_TARGETS app)
endif()
# link into a shared library
if(ImpactX_LIB)
add_library(shared MODULE)
add_library(ImpactX::shared ALIAS shared)
target_link_libraries(shared PUBLIC ImpactX)
set(_BUILDINFO_SRC shared)
list(APPEND _ALL_TARGETS shared)
set_target_properties(ImpactX shared PROPERTIES
POSITION_INDEPENDENT_CODE ON
WINDOWS_EXPORT_ALL_SYMBOLS ON
)
endif()
# own headers
target_include_directories(ImpactX PUBLIC
$<BUILD_INTERFACE:${ImpactX_SOURCE_DIR}/src>
)
# if we include <AMReX_buildInfo.H> we will need to call:
include(AMReXBuildInfo)
generate_buildinfo(${_BUILDINFO_SRC} "${ImpactX_SOURCE_DIR}")
target_link_libraries(ImpactX PRIVATE buildInfo::${_BUILDINFO_SRC})
unset(_BUILDINFO_SRC)
# add sources
add_subdirectory(src)
# C++ properties: at least a C++14 capable compiler is needed
foreach(ImpactX_tgt IN LISTS _ALL_TARGETS)
target_compile_features(${ImpactX_tgt} PUBLIC cxx_std_14)
endforeach()
set_target_properties(${_ALL_TARGETS} PROPERTIES
CXX_EXTENSIONS OFF
CXX_STANDARD_REQUIRED ON
)
# Interprocedural optimization
if(ImpactX_IPO)
enable_IPO("${_ALL_TARGETS}")
endif()
# link dependencies
target_link_libraries(ImpactX PUBLIC ImpactX::thirdparty::AMReX)
if(ImpactX_OPENPMD)
target_compile_definitions(ImpactX PUBLIC ImpactX_USE_OPENPMD)
target_link_libraries(ImpactX PUBLIC openPMD::openPMD)
endif()
if(ImpactX_QED)
target_compile_definitions(ImpactX PUBLIC ImpactX_QED)
if(ImpactX_QED_TABLE_GEN)
target_compile_definitions(ImpactX PUBLIC ImpactX_QED_TABLE_GEN)
endif()
target_link_libraries(ImpactX PUBLIC PXRMP_QED::PXRMP_QED)
endif()
# AMReX helper function: propagate CUDA specific target & source properties
if(ImpactX_COMPUTE STREQUAL CUDA)
foreach(ImpactX_tgt IN LISTS _ALL_TARGETS)
setup_target_for_cuda_compilation(${ImpactX_tgt})
endforeach()
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.17)
foreach(ImpactX_tgt IN LISTS _ALL_TARGETS)
target_compile_features(${ImpactX_tgt} PUBLIC cuda_std_14)
endforeach()
set_target_properties(${_ALL_TARGETS} PROPERTIES
CUDA_EXTENSIONS OFF
CUDA_STANDARD_REQUIRED ON
)
endif()
endif()
# fancy binary name for build variants
set_ImpactX_binary_name()
# Defines #####################################################################
#
get_source_version(ImpactX ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(ImpactX PUBLIC ImpactX_GIT_VERSION="${ImpactX_GIT_VERSION}")
if(ImpactX_OPENPMD)
target_compile_definitions(ImpactX PUBLIC ImpactX_USE_OPENPMD)
endif()
# Warnings ####################################################################
#
set_cxx_warnings()
# Generate Configuration and .pc Files ########################################
#
# these files are used if ImpactX is installed and picked up by a downstream
# project (not needed yet)
#include(CMakePackageConfigHelpers)
#write_basic_package_version_file("ImpactXConfigVersion.cmake"
# VERSION ${ImpactX_VERSION}
# COMPATIBILITY SameMajorVersion
#)
# Installs ####################################################################
#
# headers, libraries and executables
set(ImpactX_INSTALL_TARGET_NAMES)
if(ImpactX_APP)
list(APPEND ImpactX_INSTALL_TARGET_NAMES app)
endif()
if(ImpactX_LIB)
list(APPEND ImpactX_INSTALL_TARGET_NAMES shared)
endif()
install(TARGETS ${ImpactX_INSTALL_TARGET_NAMES}
EXPORT ImpactXTargets
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
# simplified library alias
# this is currently expected by Python bindings
if(ImpactX_LIB)
if(WIN32)
set(mod_ext "dll")
else()
set(mod_ext "so")
endif()
install(CODE "file(CREATE_LINK
$<TARGET_FILE_NAME:shared>
${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libImpactX.${mod_ext}
COPY_ON_ERROR SYMBOLIC)")
endif()
# CMake package file for find_package(ImpactX::ImpactX) in depending projects
#install(EXPORT ImpactXTargets
# FILE ImpactXTargets.cmake
# NAMESPACE ImpactX::
# DESTINATION ${CMAKE_INSTALL_CMAKEDIR}
#)
#install(
# FILES
# ${ImpactX_BINARY_DIR}/ImpactXConfig.cmake
# ${ImpactX_BINARY_DIR}/ImpactXConfigVersion.cmake
# DESTINATION ${CMAKE_INSTALL_CMAKEDIR}
#)
# Tests #######################################################################
#
#if(BUILD_TESTING)
# enable_testing()
#
# add_test(...)
#endif()
# Status Summary for Build Options ############################################
#
ImpactX_print_summary()