mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-20 04:10:03 +01:00
15 lines
282 B
Meson
15 lines
282 B
Meson
|
|
project('wireplumber', ['c'],
|
||
|
|
version : '0.0.1',
|
||
|
|
license : 'LGPL',
|
||
|
|
meson_version : '>= 0.47.0',
|
||
|
|
default_options : [
|
||
|
|
'warning_level=1',
|
||
|
|
'buildtype=debugoptimized'
|
||
|
|
]
|
||
|
|
)
|
||
|
|
|
||
|
|
glib_dep = dependency('gobject-2.0')
|
||
|
|
pipewire_dep = dependency('libpipewire-0.3')
|
||
|
|
|
||
|
|
subdir('src')
|