dub: add other library target types

Signed-off-by: Luís Ferreira <lsferreira169@gmail.com>
pull/5417/head
Luís Ferreira 5 years ago committed by Jussi Pakkanen
parent e9bd7d49bd
commit 144e7dcf3b
  1. 2
      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:

Loading…
Cancel
Save