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)
This commit is contained in:
2025-02-23 11:26:41 -05:00
parent 17fea1e046
commit 411a767dc4
5 changed files with 210 additions and 188 deletions

View File

@@ -1,22 +1,22 @@
# Define the library
logger_sources = files(
'private/logger.cpp',
probe_sources = files(
'private/probe.cpp',
)
logger_headers = files(
'public/logger.h'
probe_headers = files(
'public/probe.h'
)
# Define the liblogger library so it can be linked against by other parts of the build system
liblogger = library('logger',
logger_sources,
libprobe = static_library('probe',
probe_sources,
include_directories: include_directories('public'),
cpp_args: ['-fvisibility=default'],
install : true)
install : true,
dependencies: [config_dep, mfem_dep, quill_dep]
)
logger_dep = declare_dependency(
probe_dep = declare_dependency(
include_directories: include_directories('public'),
link_with: liblogger,
)
# Make headers accessible
install_headers(logger_headers, subdir : '4DSSE/logger')
link_with: libprobe,
)