forked from boutproject/BOUT-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
718 lines (660 loc) · 23.9 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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
cmake_minimum_required(VERSION 3.9...3.12)
if(${CMAKE_VERSION} VERSION_LESS 3.12)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
else()
cmake_policy(VERSION 3.12)
endif()
project(BOUT++
DESCRIPTION "Fluid PDE solver framework"
VERSION 4.2.2
LANGUAGES CXX)
# This might not be entirely sensible, but helps CMake to find the
# correct MPI, workaround for https://gitlab.kitware.com/cmake/cmake/issues/18895
find_program(MPIEXEC_EXECUTABLE NAMES mpiexec mpirun)
find_package(MPI REQUIRED)
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
# Taken from https://cliutils.gitlab.io/modern-cmake/chapters/projects/submodule.html
find_package(Git QUIET)
if(GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
# Update submodules as needed
option(GIT_SUBMODULE "Check submodules during build" ON)
if(GIT_SUBMODULE)
message(STATUS "Submodule update")
execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE GIT_SUBMOD_RESULT)
if(NOT GIT_SUBMOD_RESULT EQUAL "0")
message(FATAL_ERROR "git submodule update --init failed with ${GIT_SUBMOD_RESULT}, please checkout submodules")
endif()
endif()
endif()
if(NOT EXISTS "${PROJECT_SOURCE_DIR}/externalpackages/mpark.variant/CMakeLists.txt")
message(FATAL_ERROR "The submodules were not downloaded! GIT_SUBMODULE was turned off or failed. Please update submodules and try again.")
endif()
add_subdirectory(externalpackages/mpark.variant)
set(BOUT_SOURCES
./include/boundary_factory.hxx
./include/boundary_op.hxx
./include/boundary_region.hxx
./include/boundary_standard.hxx
./include/bout.hxx
./include/bout/array.hxx
./include/bout/assert.hxx
./include/bout/constants.hxx
./include/bout/coordinates.hxx
./include/bout/deprecated.hxx
./include/bout/deriv_store.hxx
./include/bout/expr.hxx
./include/bout/field_visitor.hxx
./include/bout/fieldgroup.hxx
./include/bout/format.hxx
./include/bout/fv_ops.hxx
./include/bout/generic_factory.hxx
./include/bout/globalfield.hxx
./include/bout/griddata.hxx
./include/bout/index_derivs.hxx
./include/bout/index_derivs_interface.hxx
./include/bout/invert/laplacexy.hxx
./include/bout/invert/laplacexz.hxx
./include/bout/invertable_operator.hxx
./include/bout/macro_for_each.hxx
./include/bout/mesh.hxx
./include/bout/monitor.hxx
./include/bout/openmpwrap.hxx
./include/bout/paralleltransform.hxx
./include/bout/petsclib.hxx
./include/bout/physicsmodel.hxx
./include/bout/region.hxx
./include/bout/rkscheme.hxx
./include/bout/rvec.hxx
./include/bout/scorepwrapper.hxx
./include/bout/slepclib.hxx
./include/bout/solver.hxx
./include/bout/solverfactory.hxx
./include/bout/surfaceiter.hxx
./include/bout/sys/expressionparser.hxx
./include/bout/sys/gettext.hxx
./include/bout/sys/range.hxx
./include/bout/sys/timer.hxx
./include/bout/sys/type_name.hxx
./include/bout/sys/uncopyable.hxx
./include/bout/sys/variant.hxx
./include/bout/template_combinations.hxx
./include/bout_types.hxx
./include/boutcomm.hxx
./include/boutexception.hxx
./include/boutmain.hxx
./include/cyclic_reduction.hxx
./include/datafile.hxx
./include/dataformat.hxx
./include/dcomplex.hxx
./include/derivs.hxx
./include/difops.hxx
./include/fft.hxx
./include/field.hxx
./include/field2d.hxx
./include/field3d.hxx
./include/field_data.hxx
./include/field_factory.hxx
./include/fieldperp.hxx
./include/globals.hxx
./include/gyro_average.hxx
./include/initialprofiles.hxx
./include/interpolation.hxx
./include/interpolation_factory.hxx
./include/invert_laplace.hxx
./include/invert_parderiv.hxx
./include/lapack_routines.hxx
./include/mask.hxx
./include/msg_stack.hxx
./include/multiostream.hxx
./include/options.hxx
./include/options_netcdf.hxx
./include/optionsreader.hxx
./include/output.hxx
./include/parallel_boundary_op.hxx
./include/parallel_boundary_region.hxx
./include/smoothing.hxx
./include/sourcex.hxx
./include/stencils.hxx
./include/unused.hxx
./include/utils.hxx
./include/vecops.hxx
./include/vector2d.hxx
./include/vector3d.hxx
./include/where.hxx
./src/bout++.cxx
./src/field/field.cxx
./src/field/field2d.cxx
./src/field/field3d.cxx
./src/field/field_data.cxx
./src/field/field_factory.cxx
./src/field/fieldgenerators.cxx
./src/field/fieldgenerators.hxx
./src/field/fieldgroup.cxx
./src/field/fieldperp.cxx
./src/field/generated_fieldops.cxx
./src/field/globalfield.cxx
./src/field/initialprofiles.cxx
./src/field/vecops.cxx
./src/field/vector2d.cxx
./src/field/vector3d.cxx
./src/field/where.cxx
./src/fileio/datafile.cxx
./src/fileio/dataformat.cxx
./src/fileio/formatfactory.cxx
./src/fileio/formatfactory.hxx
./src/fileio/impls/emptyformat.hxx
./src/fileio/impls/hdf5/h5_format.cxx
./src/fileio/impls/hdf5/h5_format.hxx
./src/fileio/impls/netcdf/nc_format.cxx
./src/fileio/impls/netcdf/nc_format.hxx
./src/fileio/impls/netcdf4/ncxx4.cxx
./src/fileio/impls/netcdf4/ncxx4.hxx
./src/fileio/impls/pnetcdf/pnetcdf.cxx
./src/fileio/impls/pnetcdf/pnetcdf.hxx
./src/invert/fft_fftw.cxx
./src/invert/lapack_routines.cxx
./src/invert/laplace/impls/cyclic/cyclic_laplace.cxx
./src/invert/laplace/impls/cyclic/cyclic_laplace.hxx
./src/invert/laplace/impls/multigrid/multigrid_alg.cxx
./src/invert/laplace/impls/multigrid/multigrid_laplace.cxx
./src/invert/laplace/impls/multigrid/multigrid_laplace.hxx
./src/invert/laplace/impls/multigrid/multigrid_solver.cxx
./src/invert/laplace/impls/mumps/mumps_laplace.cxx
./src/invert/laplace/impls/mumps/mumps_laplace.hxx
./src/invert/laplace/impls/naulin/naulin_laplace.cxx
./src/invert/laplace/impls/naulin/naulin_laplace.hxx
./src/invert/laplace/impls/pdd/pdd.cxx
./src/invert/laplace/impls/pdd/pdd.hxx
./src/invert/laplace/impls/petsc/petsc_laplace.cxx
./src/invert/laplace/impls/petsc/petsc_laplace.hxx
./src/invert/laplace/impls/serial_band/serial_band.cxx
./src/invert/laplace/impls/serial_band/serial_band.hxx
./src/invert/laplace/impls/serial_tri/serial_tri.cxx
./src/invert/laplace/impls/serial_tri/serial_tri.hxx
./src/invert/laplace/impls/shoot/shoot_laplace.cxx
./src/invert/laplace/impls/shoot/shoot_laplace.hxx
./src/invert/laplace/impls/spt/spt.cxx
./src/invert/laplace/impls/spt/spt.hxx
./src/invert/laplace/invert_laplace.cxx
./src/invert/laplace/laplacefactory.cxx
./src/invert/laplace/laplacefactory.hxx
./src/invert/laplacexy/laplacexy.cxx
./src/invert/laplacexz/impls/cyclic/laplacexz-cyclic.cxx
./src/invert/laplacexz/impls/cyclic/laplacexz-cyclic.hxx
./src/invert/laplacexz/impls/petsc/laplacexz-petsc.cxx
./src/invert/laplacexz/impls/petsc/laplacexz-petsc.hxx
./src/invert/laplacexz/laplacexz.cxx
./src/invert/parderiv/impls/cyclic/cyclic.cxx
./src/invert/parderiv/impls/cyclic/cyclic.hxx
./src/invert/parderiv/invert_parderiv.cxx
./src/invert/parderiv/parderiv_factory.cxx
./src/invert/parderiv/parderiv_factory.hxx
./src/mesh/boundary_factory.cxx
./src/mesh/boundary_region.cxx
./src/mesh/boundary_standard.cxx
./src/mesh/coordinates.cxx
./src/mesh/data/gridfromfile.cxx
./src/mesh/data/gridfromoptions.cxx
./src/mesh/difops.cxx
./src/mesh/fv_ops.cxx
./src/mesh/impls/bout/boutmesh.cxx
./src/mesh/impls/bout/boutmesh.hxx
./src/mesh/index_derivs.cxx
./src/mesh/interpolation.cxx
./src/mesh/interpolation/bilinear.cxx
./src/mesh/interpolation/hermite_spline.cxx
./src/mesh/interpolation/interpolation_factory.cxx
./src/mesh/interpolation/lagrange_4pt.cxx
./src/mesh/interpolation/monotonic_hermite_spline.cxx
./src/mesh/mesh.cxx
./src/mesh/meshfactory.cxx
./src/mesh/meshfactory.hxx
./src/mesh/parallel/fci.cxx
./src/mesh/parallel/fci.hxx
./src/mesh/parallel/identity.cxx
./src/mesh/parallel/shiftedmetric.cxx
./src/mesh/parallel_boundary_op.cxx
./src/mesh/parallel_boundary_region.cxx
./src/mesh/surfaceiter.cxx
./src/physics/gyro_average.cxx
./src/physics/physicsmodel.cxx
./src/physics/smoothing.cxx
./src/physics/sourcex.cxx
./src/solver/impls/arkode/arkode.cxx
./src/solver/impls/arkode/arkode.hxx
./src/solver/impls/cvode/cvode.cxx
./src/solver/impls/cvode/cvode.hxx
./src/solver/impls/euler/euler.cxx
./src/solver/impls/euler/euler.hxx
./src/solver/impls/ida/ida.cxx
./src/solver/impls/ida/ida.hxx
./src/solver/impls/imex-bdf2/imex-bdf2.cxx
./src/solver/impls/imex-bdf2/imex-bdf2.hxx
./src/solver/impls/karniadakis/karniadakis.cxx
./src/solver/impls/karniadakis/karniadakis.hxx
./src/solver/impls/petsc/petsc.cxx
./src/solver/impls/petsc/petsc.hxx
./src/solver/impls/power/power.cxx
./src/solver/impls/power/power.hxx
./src/solver/impls/pvode/pvode.cxx
./src/solver/impls/pvode/pvode.hxx
./src/solver/impls/rk3-ssp/rk3-ssp.cxx
./src/solver/impls/rk3-ssp/rk3-ssp.hxx
./src/solver/impls/rk4/rk4.cxx
./src/solver/impls/rk4/rk4.hxx
./src/solver/impls/rkgeneric/impls/cashkarp/cashkarp.cxx
./src/solver/impls/rkgeneric/impls/cashkarp/cashkarp.hxx
./src/solver/impls/rkgeneric/impls/rk4simple/rk4simple.cxx
./src/solver/impls/rkgeneric/impls/rk4simple/rk4simple.hxx
./src/solver/impls/rkgeneric/impls/rkf34/rkf34.cxx
./src/solver/impls/rkgeneric/impls/rkf34/rkf34.hxx
./src/solver/impls/rkgeneric/impls/rkf45/rkf45.cxx
./src/solver/impls/rkgeneric/impls/rkf45/rkf45.hxx
./src/solver/impls/rkgeneric/rkgeneric.cxx
./src/solver/impls/rkgeneric/rkgeneric.hxx
./src/solver/impls/rkgeneric/rkscheme.cxx
./src/solver/impls/rkgeneric/rkschemefactory.cxx
./src/solver/impls/rkgeneric/rkschemefactory.hxx
./src/solver/impls/slepc/slepc.cxx
./src/solver/impls/slepc/slepc.hxx
./src/solver/impls/snes/snes.cxx
./src/solver/impls/snes/snes.hxx
./src/solver/impls/split-rk/split-rk.cxx
./src/solver/impls/split-rk/split-rk.hxx
./src/solver/solver.cxx
./src/solver/solverfactory.cxx
./src/sys/bout_types.cxx
./src/sys/boutcomm.cxx
./src/sys/boutexception.cxx
./src/sys/derivs.cxx
./src/sys/expressionparser.cxx
./src/sys/msg_stack.cxx
./src/sys/options.cxx
./src/sys/options/optionparser.hxx
./src/sys/options/options_ini.cxx
./src/sys/options/options_ini.hxx
./src/sys/options/options_netcdf.cxx
./src/sys/optionsreader.cxx
./src/sys/output.cxx
./src/sys/petsclib.cxx
./src/sys/range.cxx
./src/sys/slepclib.cxx
./src/sys/timer.cxx
./src/sys/type_name.cxx
./src/sys/utils.cxx
)
add_library(bout++
${BOUT_SOURCES}
)
add_library(bout++::bout++ ALIAS bout++)
target_link_libraries(bout++ PUBLIC MPI::MPI_CXX mpark_variant)
target_include_directories(bout++ PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
target_compile_definitions(bout++
PUBLIC "BOUT_VERSION_STRING=\"${PROJECT_VERSION}\""
PUBLIC "BOUT_VERSION_DOUBLE=${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${PROJECT_VERSION_PATCH}"
)
target_compile_features(bout++ PUBLIC cxx_std_11)
set_target_properties(bout++ PROPERTIES CXX_EXTENSIONS OFF)
option(ENABLE_WARNINGS "Enable compiler warnings" ON)
if (ENABLE_WARNINGS)
target_compile_options(bout++ PRIVATE
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:
-Wall -Wextra >
$<$<CXX_COMPILER_ID:MSVC>:
/W4 >
)
include(EnableCXXWarningIfSupport)
# Note we explicitly turn off -Wcast-function-type as PETSc *requires*
# we cast a function to the wrong type in MatFDColoringSetFunction
target_enable_cxx_warning_if_supported(bout++
FLAGS -Wnull-dereference -Wno-cast-function-type
)
endif()
# Compile time features
set(CHECK_LEVELS 0 1 2 3 4)
set(CHECK 3 CACHE STRINGS "Set run-time checking level")
set_property(CACHE CHECK PROPERTY STRINGS ${CHECK_LEVELS})
if (NOT CHECK IN_LIST CHECK_LEVELS)
message(FATAL_ERROR "CHECK must be one of ${CHECK_LEVELS}")
endif()
message(STATUS "Runtime checking level: CHECK=${CHECK}")
target_compile_definitions(bout++
PUBLIC "CHECK=${CHECK}"
PUBLIC "BOUT_CHECK=${CHECK}")
set(BOUT_CHECK_LEVEL ${CHECK})
option(DEBUG_ENABLED "Enable extra debug output" OFF)
option(ENABLE_OUTPUT_DEBUG "Enable extra debug output" OFF)
if (ENABLE_OUTPUT_DEBUG OR DEBUG_ENABLED)
target_compile_definitions(bout++
PUBLIC "DEBUG_ENABLED"
PUBLIC "BOUT_OUTPUT_DEBUG")
endif()
message(STATUS "Extra debug output: DEBUG_ENABLED=${DEBUG_ENABLED}")
set(BOUT_USE_OUTPUT_DEBUG ${DEBUG_ENABLED})
option(ENABLE_SIGNAL "SegFault handling" ON)
if (ENABLE_SIGNAL)
target_compile_definitions(bout++
PUBLIC "SIGHANDLE"
PUBLIC "BOUT_SIGHANDLE")
endif()
message(STATUS "Signal handling: SIGHANDLE=${ENABLE_SIGNAL}")
set(BOUT_USE_SIGNAL ${ENABLE_SIGNAL})
option(ENABLE_COLOR "Output coloring" ON)
if (ENABLE_COLOR)
target_compile_definitions(bout++
PUBLIC "LOGCOLOR"
PUBLIC "BOUT_LOGCOLOR")
endif()
message(STATUS "Output coloring: LOGCOLOR=${ENABLE_COLOR}")
set(BOUT_USE_COLOR ${ENABLE_COLOR})
option(ENABLE_TRACK "Field name tracking" ON)
if (ENABLE_TRACK)
target_compile_definitions(bout++
PUBLIC "TRACK"
PUBLIC "BOUT_TRACK")
endif()
message(STATUS "Field name tracking: TRACK=${ENABLE_TRACK}")
set(BOUT_USE_TRACK ${ENABLE_TRACK})
option(ENABLE_SIGFPE "Signalling floating point exceptions" OFF)
if (ENABLE_SIGFPE)
target_compile_definitions(bout++
PUBLIC "BOUT_FPE")
endif()
message(STATUS "Signalling floating point exceptions: BOUT_FPE=${ENABLE_SIGFPE}")
set(BOUT_USE_SIGFPE ${ENABLE_SIGFPE})
option(ENABLE_BACKTRACE "Enable backtrace" ON)
if (ENABLE_BACKTRACE)
find_program(ADDR2LINE_FOUND addr2line)
if (NOT ADDR2LINE_FOUND)
message(FATAL_ERROR "addr2line not found")
endif()
target_compile_definitions(bout++
PUBLIC "BACKTRACE"
PUBLIC "BOUT_BACKTRACE")
target_link_libraries(bout++ PUBLIC ${CMAKE_DL_LIBS})
endif()
message(STATUS "Enable backtrace: BACKTRACE=${ENABLE_BACKTRACE}")
set(BOUT_USE_BACKTRACE ${ENABLE_BACKTRACE})
option(ENABLE_OPENMP "Enable OpenMP support" OFF)
if (ENABLE_OPENMP)
find_package(OpenMP REQUIRED)
target_link_libraries(bout++ PUBLIC OpenMP::OpenMP_CXX)
set(possible_openmp_schedules static dynamic guided auto)
set(OPENMP_SCHEDULE static CACHE STRINGS "Set OpenMP schedule")
if (NOT OPENMP_SCHEDULE IN_LIST possible_openmp_schedules)
message(FATAL_ERROR "OPENMP_SCHEDULE must be one of ${possible_openmp_schedules}")
endif()
target_compile_definitions(bout++
PUBLIC "OPENMP_SCHEDULE=${OPENMP_SCHEDULE}"
PUBLIC "BOUT_OPENMP_SCHEDULE=${OPENMP_SCHEDULE}")
message(STATUS "OpenMP schedule: ${OPENMP_SCHEDULE}")
endif()
message(STATUS "Enable OpenMP: ${ENABLE_OPENMP}")
set(BOUT_USE_OPENMP ${ENABLE_OPENMP})
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
message(STATUS "Git revision: ${GIT_SHA1}")
target_compile_definitions(bout++
PUBLIC "GIT_REVISION=${GIT_SHA1}")
set(BOUT_GIT_REVISION ${GIT_SHA1})
# Optional dependencies
option(USE_PVODE "Enable support for bundled PVODE" ON)
if (USE_PVODE)
add_subdirectory(externalpackages/PVODE)
target_link_libraries(bout++ PUBLIC pvode pvpre)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_PVODE")
endif()
message(STATUS "PVODE support: ${USE_PVODE}")
set(BOUT_HAS_PVODE ${USE_PVODE})
option(USE_NETCDF "Enable support for NetCDF output" ON)
if (USE_NETCDF)
find_package(NetCDF REQUIRED)
target_compile_definitions(bout++
PUBLIC "NCDF4"
PUBLIC "BOUT_HAS_NETCDF")
target_link_libraries(bout++ PUBLIC NetCDF::NetCDF_CXX)
endif()
message(STATUS "NetCDF support: ${USE_NETCDF}")
set(BOUT_HAS_NETCDF ${USE_NETCDF})
option(USE_HDF5 "Enable support for HDF5 output" OFF)
if (USE_HDF5)
find_package(HDF5 REQUIRED COMPONENTS CXX)
target_compile_definitions(bout++
PUBLIC "HDF5"
PUBLIC "BOUT_HAS_HDF5")
target_link_libraries(bout++ PUBLIC "${HDF5_CXX_LIBRARIES}")
target_include_directories(bout++ PUBLIC "${HDF5_CXX_INCLUDE_DIRS}")
endif()
message(STATUS "HDF5 support: ${USE_HDF5}")
set(BOUT_HAS_HDF5 ${USE_HDF5})
option(USE_FFTW "Enable support for FFTW" ON)
if (USE_FFTW)
find_package(FFTW REQUIRED)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_FFTW")
target_link_libraries(bout++ PUBLIC FFTW::FFTW)
endif()
message(STATUS "FFTW support: ${USE_FFTW}")
set(BOUT_HAS_FFTW ${USE_FFTW})
option(USE_LAPACK "Enable support for LAPACK" ON)
if (USE_LAPACK)
if (NOT CMAKE_SYSTEM_NAME STREQUAL "CrayLinuxEnvironment")
# Cray wrappers sort this out for us
find_package(LAPACK REQUIRED)
target_link_libraries(bout++ PUBLIC "${LAPACK_LIBRARIES}")
endif()
target_compile_definitions(bout++
PUBLIC "LAPACK"
PUBLIC "BOUT_HAS_LAPACK")
endif()
message(STATUS "LAPACK support: ${USE_LAPACK}")
set(BOUT_HAS_LAPACK ${USE_LAPACK})
option(USE_PETSC "Enable support for PETSc time solvers and inversions" OFF)
if (USE_PETSC)
if (NOT CMAKE_SYSTEM_NAME STREQUAL "CrayLinuxEnvironment")
# Cray wrappers sort this out for us
find_package(PETSc REQUIRED)
target_link_libraries(bout++ PUBLIC PETSc::PETSc)
endif()
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_PETSC")
endif()
message(STATUS "PETSc support: ${USE_PETSC}")
set(BOUT_HAS_PETSC ${USE_PETSC})
option(USE_SLEPC "Enable support for SLEPc eigen solver" OFF)
if (USE_SLEPC)
find_package(SLEPc REQUIRED)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_SLEPC")
target_link_libraries(bout++ PUBLIC SLEPc::SLEPc)
endif()
message(STATUS "SLEPc support: ${USE_SLEPC}")
set(BOUT_HAS_SLEPC ${USE_SLEPC})
option(USE_SUNDIALS "Enable support for SUNDIALS time solvers" OFF)
if (USE_SUNDIALS)
find_package(SUNDIALS REQUIRED)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_CVODE"
PUBLIC "BOUT_HAS_IDA"
PUBLIC "BOUT_HAS_ARKODE"
PUBLIC "BOUT_HAS_SUNDIALS")
target_link_libraries(bout++ PUBLIC SUNDIALS::cvode)
target_link_libraries(bout++ PUBLIC SUNDIALS::ida)
target_link_libraries(bout++ PUBLIC SUNDIALS::arkode)
endif()
message(STATUS "SUNDIALS support: ${USE_SUNDIALS}")
set(BOUT_HAS_SUNDIALS ${USE_SUNDIALS})
option(USE_NLS "Enable Native Language Support" ON)
find_package(Gettext)
if (GETTEXT_FOUND)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_GETTEXT")
find_package(Intl)
if (Intl_FOUND)
target_link_libraries(bout++
PUBLIC ${Intl_LIBRARIES})
target_include_directories(bout++
PUBLIC ${Intl_INCLUDE_DIRS})
endif()
endif()
set(BOUT_HAS_GETTEXT ${GETTEXT_FOUND})
option(USE_SCOREP "Enable support for Score-P based instrumentation" OFF)
if (USE_SCOREP)
target_compile_definitions(bout++
PUBLIC "BOUT_HAS_SCOREP")
message(STATUS "Score-P support enabled. Please make sure you are calling CMake like so:
SCOREP_WRAPPER=off cmake -DCMAKE_C_COMPILER=scorep-mpicc -DCMAKE_CXX_COMPILER=scorep-mpicxx <other CMake options>
")
endif()
set(BOUT_HAS_SCOREP ${USE_SCOREP})
include(CheckCXXSourceCompiles)
check_cxx_source_compiles("int main() { const char* name = __PRETTY_FUNCTION__; }"
HAS_PRETTY_FUNCTION)
set(BOUT_HAS_PRETTY_FUNCTION ${HAS_PRETTY_FUNCTION})
if (HAS_PRETTY_FUNCTION)
target_compile_definitions(bout++
PUBLIC "HAS_PRETTY_FUNCTION"
PUBLIC "BOUT_HAS_PRETTY_FUNCTION")
endif()
# Copy FILENAME from source directory to build directory
# and add dependency on TARGET
macro(bout_test_copy_file TARGET FILENAME)
add_custom_command(TARGET "${TARGET}" POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_SOURCE_DIR}/"${FILENAME}"
${CMAKE_CURRENT_BINARY_DIR}/"${FILENAME}")
endmacro()
# Add a new integrated test
#
# Required arguments:
#
# - TESTNAME: name of the test
#
# - SOURCES: list of source files
#
# Optional arguments:
#
# - USE_RUNTEST: if given, the test uses `./runtest` as the test
# command, otherwise it uses the executable
#
# - USE_DATA_BOUT_INP: if given, copy `data/BOUT.inp`
#
# - EXTRA_FILES: any extra files that are required to run the test
#
# - REQUIRES: list of variables that must be truthy to enable test
function(bout_add_integrated_test TESTNAME)
set(options USE_RUNTEST USE_DATA_BOUT_INP)
set(multiValueArgs SOURCES EXTRA_FILES REQUIRES)
cmake_parse_arguments(BOUT_TEST_OPTIONS "${options}" "" "${multiValueArgs}" ${ARGN})
foreach (REQUIREMENT IN LISTS BOUT_TEST_OPTIONS_REQUIRES)
if (NOT ${REQUIREMENT})
message(STATUS "Not building test ${TESTNAME}, requirement not met: ${REQUIREMENT}")
return()
endif()
endforeach()
add_executable(${TESTNAME} ${BOUT_TEST_OPTIONS_SOURCES})
target_link_libraries(${TESTNAME} bout++)
target_include_directories(${TESTNAME} PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
if (BOUT_TEST_OPTIONS_USE_RUNTEST)
add_test(NAME ${TESTNAME} COMMAND ./runtest)
bout_test_copy_file("${TESTNAME}" runtest)
else()
add_test(NAME ${TESTNAME} COMMAND ${TESTNAME})
endif()
if (BOUT_TEST_OPTIONS_USE_DATA_BOUT_INP)
bout_test_copy_file("${TESTNAME}" data/BOUT.inp)
endif()
if (BOUT_TEST_OPTIONS_EXTRA_FILES)
foreach (FILE ${BOUT_TEST_OPTIONS_EXTRA_FILES})
bout_test_copy_file("${TESTNAME}" "${FILE}")
endforeach()
endif()
set_target_properties(${TESTNAME} PROPERTIES FOLDER tests/integrated)
endfunction()
option(PACKAGE_TESTS "Build the tests" ON)
if(PACKAGE_TESTS)
enable_testing()
add_subdirectory(tests/unit)
add_subdirectory(tests/integrated)
endif()
##################################################
# Installation
include(GNUInstallDirs)
install(TARGETS bout++
EXPORT bout++Targets
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}"
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
)
install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
bout++ConfigVersion.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY SameMajorVersion
)
install(EXPORT bout++Targets
FILE bout++Targets.cmake
NAMESPACE bout++::
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/bout++"
)
configure_package_config_file(bout++Config.cmake.in bout++Config.cmake
INSTALL_DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/bout++Config.cmake"
)
install(
FILES
"${CMAKE_CURRENT_BINARY_DIR}/bout++Config.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/bout++ConfigVersion.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/CorrectWindowsPaths.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindFFTW.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindNetCDF.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindPackageMultipass.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindPETSc.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindScoreP.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindSLEPc.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindSUNDIALS.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/ResolveCompilerPaths.cmake"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/bout++"
)
export(EXPORT bout++Targets
FILE "${CMAKE_CURRENT_BINARY_DIR}/bout++Targets.cmake"
NAMESPACE bout++::
)
export(PACKAGE bout)
##################################################
# Configure summary
message("
--------------------------------
BOUT++ Configuration Summary
--------------------------------
Bundled PVODE support : ${BOUT_HAS_PVODE}
PETSc support : ${BOUT_HAS_PETSC}
SLEPc support : ${BOUT_HAS_SLEPC}
SUNDIALS support : ${BOUT_HAS_SUNDIALS}
NetCDF support : ${BOUT_HAS_NETCDF}
HDF5 support : ${BOUT_HAS_HDF5}
FFTW support : ${BOUT_HAS_FFTW}
LAPACK support : ${BOUT_HAS_LAPACK}
OpenMP support : ${BOUT_USE_OPENMP}
Natural language support : ${BOUT_HAS_GETTEXT}
ScoreP support : ${BOUT_HAS_SCOREP}
Extra debug output : ${BOUT_USE_OUTPUT_DEBUG}
CHECK level : ${BOUT_CHECK_LEVEL}
Signal handling : ${BOUT_USE_SIGNAL}
Output coloring : ${BOUT_USE_COLOR}
Field name tracking : ${BOUT_USE_TRACK}
Floating point exceptions: ${BOUT_USE_SIGFPE}
Backtrace enabled : ${BOUT_USE_BACKTRACE}
=== Python ===
Make sure that the tools/pylib directory is in your PYTHONPATH
e.g. by adding to your ~/.bashrc file
export PYTHONPATH=$PWD/tools/pylib/:\$PYTHONPATH
*** Now run `cmake --build .` to compile BOUT++ ***
")