Merge branch 'main' into feature/pointwisePolytrope

This commit is contained in:
2025-03-26 11:38:07 -04:00
86 changed files with 15850 additions and 2170 deletions

View File

@@ -27,16 +27,23 @@ probe_headers = files(
'public/probe.h'
)
dependencies = [
config_dep,
mfem_dep,
quill_dep
]
# Define the liblogger library so it can be linked against by other parts of the build system
libprobe = static_library('probe',
probe_sources,
include_directories: include_directories('public'),
cpp_args: ['-fvisibility=default'],
install : true,
dependencies: [config_dep, mfem_dep, quill_dep, macros_dep]
dependencies: dependencies
)
probe_dep = declare_dependency(
include_directories: include_directories('public'),
link_with: libprobe,
dependencies: dependencies
)