summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2023-01-23 11:22:40 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2023-01-23 11:22:43 +0400
commit89208ee729e6d0311b89f46930edd960d54516a8 (patch)
tree4c97063954c923552d3f1fa1c6ab832e00efd34a
parent245c325a85bc0391cc8232c3e0075e833ec0f396 (diff)
meson: fix a warning
WARNING: extract_all_objects called without setting recursive Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 8dccb42..3613ae6 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -24,7 +24,7 @@ endif
# create a static library from a shared one extracting all objects
# this allows to rewrite part of it if necessary for mocking
test_lib = static_library('test-lib',
- objects : spice_client_glib_lib.extract_all_objects())
+ objects : spice_client_glib_lib.extract_all_objects(recursive: true))
foreach src : tests_sources
name = 'test-@0@'.format(src).split('.')[0]