From f440fbd4ed35796a08f282c5542bada6ba608646 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 12 Jun 2025 00:14:50 +0200 Subject: [PATCH] build: set wrap_mode=nodownload in default options This can be surprising (e.g. in CI, this can download source code instead of using system libraries) and users can easily turn it back on if desired. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 630c23f7d..f22fa7be2 100644 --- a/meson.build +++ b/meson.build @@ -8,6 +8,7 @@ project( 'c_std=c11', 'warning_level=2', 'werror=true', + 'wrap_mode=nodownload', ], )