Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Nazar <nazard@nazar.ca>2021-08-18 03:15:05 +0300
committerDoug Nazar <nazard@nazar.ca>2021-08-19 20:23:25 +0300
commit793b474651fb6388e8aefcf31c8283e1330bc23c (patch)
treede4f1e2e1caa0a932db83efdb4ecdd7c516d581a
parentb732715f737595884dd54d1f7860982652b2482f (diff)
meson: Set recursive for extract_all_objects()
Fixes the following warning: WARNING: extract_all_objects called without setting recursive keyword argument. Meson currently defaults to non-recursive to maintain backward compatibility but the default will be changed in the future. orc-test\meson.build:16:0: ERROR: Fatal warnings enabled, aborting
-rw-r--r--orc-test/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/orc-test/meson.build b/orc-test/meson.build
index c1d6cd5..a3ca81b 100644
--- a/orc-test/meson.build
+++ b/orc-test/meson.build
@@ -14,7 +14,7 @@ orc_test_shr = shared_library ('orc-test-' + orc_api,
install : true)
orc_test_sta = static_library ('orc-test-' + orc_api,
- objects : orc_test_shr.extract_all_objects(),
+ objects : orc_test_shr.extract_all_objects(recursive: false),
include_directories : orc_inc,
c_args : orc_c_args + ['-DBUILDING_ORC_TEST'],
dependencies : [libm, orc_dep],