pipewire/spa/lib/meson.build
Wim Taymans 58451d626c Implement param filtering
Make a new pod filter function and use it in the plugins to filter
in enum_params.
Small tweaks to the pod_builder
2017-11-09 17:16:54 +01:00

20 lines
529 B
Meson

spalib_headers = [
'debug.h',
'pod.h',
]
install_headers(spalib_headers, subdir : 'spa/lib')
spalib_sources = ['debug.c',
'pod.c' ]
spalib = shared_library('spa-lib',
spalib_sources,
version : libversion,
soversion : soversion,
include_directories : [ spa_inc, spa_libinc ],
install : true)
spalib_dep = declare_dependency(link_with : spalib,
include_directories : spa_inc,
)