build(probe): added probe dependencies to probe_dep
This commit is contained in:
@@ -7,16 +7,23 @@ probe_headers = files(
|
|||||||
'public/probe.h'
|
'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
|
# Define the liblogger library so it can be linked against by other parts of the build system
|
||||||
libprobe = static_library('probe',
|
libprobe = static_library('probe',
|
||||||
probe_sources,
|
probe_sources,
|
||||||
include_directories: include_directories('public'),
|
include_directories: include_directories('public'),
|
||||||
cpp_args: ['-fvisibility=default'],
|
cpp_args: ['-fvisibility=default'],
|
||||||
install : true,
|
install : true,
|
||||||
dependencies: [config_dep, mfem_dep, quill_dep]
|
dependencies: dependencies
|
||||||
)
|
)
|
||||||
|
|
||||||
probe_dep = declare_dependency(
|
probe_dep = declare_dependency(
|
||||||
include_directories: include_directories('public'),
|
include_directories: include_directories('public'),
|
||||||
link_with: libprobe,
|
link_with: libprobe,
|
||||||
|
dependencies: dependencies
|
||||||
)
|
)
|
||||||
Reference in New Issue
Block a user