From 759f4231d257122cf9dba858ca04de5f835c0859 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 4 Jun 2020 18:43:33 +0200 Subject: [PATCH] meson.build: set default option default_library=static For subprojects. --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 09a1b9b6c..305162f09 100644 --- a/meson.build +++ b/meson.build @@ -7,6 +7,10 @@ project( 'c_std=c99', 'cpp_std=c++17', 'warning_level=3', + + # This is only here to build subprojects as static libraries; MPD + # itself doesn't ship any libraries. + 'default_library=static', ], license: 'GPLv2+', )