From 144e7dcf3bed22f4e6faba8334f3f46eedd420d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Ferreira?= Date: Wed, 20 Feb 2019 00:02:47 +0000 Subject: dub: add other library target types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Luís Ferreira --- mesonbuild/dependencies/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py index fd2a219..37a8847 100644 --- a/mesonbuild/dependencies/base.py +++ b/mesonbuild/dependencies/base.py @@ -1892,7 +1892,7 @@ class DubDependency(ExternalDependency): not_lib = True if 'targetType' in package: - if package['targetType'] == 'library': + if package['targetType'] in ['library', 'sourceLibrary', 'staticLibrary', 'dynamicLibrary']: not_lib = False if not_lib: -- cgit v1.1