build(probe): added probe dependencies to probe_dep
This commit is contained in:
@@ -7,16 +7,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]
|
||||
dependencies: dependencies
|
||||
)
|
||||
|
||||
probe_dep = declare_dependency(
|
||||
include_directories: include_directories('public'),
|
||||
link_with: libprobe,
|
||||
dependencies: dependencies
|
||||
)
|
||||
Reference in New Issue
Block a user