From bda221f034186277a471a347313621bd5d006c43 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 20 Jun 2023 08:07:33 -0400 Subject: [PATCH] meson: Fix harmless warning For context on the warning: https://mesonbuild.com/Release-notes-for-0-46-0.html#recursively-extract-objects --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 1a4040b5c..9005c4f90 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -26,7 +26,7 @@ foreach t : opus_tests if test_name == 'test_opus_projection' or test_name == 'test_opus_extensions' exe_kwargs = { 'link_with': [celt_lib, silk_lib, dnn_lib], - 'objects': opus_lib.extract_all_objects(), + 'objects': opus_lib.extract_all_objects(recursive: true), } endif