[amtk] build: fix a meson warning



commit 36f25a1e2acc71c7b369cc0819c2144a479497b5
Author: Sébastien Wilmet <swilmet informatique-libre be>
Date:   Fri Jul 29 20:27:57 2022 +0200

    build: fix a meson warning
    
    With Meson 0.62 there was this 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.
    ```

 amtk/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/amtk/meson.build b/amtk/meson.build
index 5031ffa..d0eff99 100644
--- a/amtk/meson.build
+++ b/amtk/meson.build
@@ -73,7 +73,7 @@ amtk_lib = library(
   link_args: amtk_lib_link_args,
   link_depends: symbol_map,
   # link_whole is not supported with MSVC, so we use extract_all_objects().
-  objects: amtk_static_lib.extract_all_objects(),
+  objects: amtk_static_lib.extract_all_objects(recursive: false),
   version: AMTK_LT_VERSION,
   install: true
 )


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]