Files
SERiF/src/probe/meson.build
Emily Boudreaux 411a767dc4 feat(probe): added probe namespace
Probe handles LogManager (for tracking multiple log files) as well as a few utility functions such as wait, pause, glVisView, and rayView (future)
2025-02-23 11:26:41 -05:00

22 lines
555 B
Meson

# Define the library
probe_sources = files(
'private/probe.cpp',
)
probe_headers = files(
'public/probe.h'
)
# 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]
)
probe_dep = declare_dependency(
include_directories: include_directories('public'),
link_with: libprobe,
)