From 9bfa266e8a9c015391a0dbcb85feae4a36409f19 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 10 Sep 2021 22:36:39 -0400 Subject: Use conventional name for meson dependency variable --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 4f47b71..b6cbf02 100644 --- a/meson.build +++ b/meson.build @@ -195,7 +195,7 @@ libzix = build_target( install: true, target_type: library_type) -libzix_dep = declare_dependency(link_with: libzix) +zix_dep = declare_dependency(link_with: libzix) # # Installation @@ -268,7 +268,7 @@ if get_option('tests') sources, include_directories: include_directories(['include']), c_args: c_args, - dependencies: [dl_dep, libzix_dep, thread_dep]), + dependencies: [dl_dep, zix_dep, thread_dep]), timeout: 120) endforeach endif @@ -296,7 +296,7 @@ if not get_option('benchmarks').disabled() executable(benchmark, 'benchmark/@0@.c'.format(benchmark), include_directories: include_directories(['include']), - dependencies: [libzix_dep, glib_dep])) + dependencies: [zix_dep, glib_dep])) endforeach else warning('Not building benchmarks because glib was not found') -- cgit v1.2.1