pipewire/spa/lib/meson.build
Wim Taymans 3b5a308645 link: improve renegotiation
Only suspend an idle node when we need to configure a different format.
2017-06-20 16:22:25 +02:00

22 lines
576 B
Meson

spalib_headers = [
'debug.h',
'format.h',
'props.h',
]
install_headers(spalib_headers, subdir : 'spa/lib')
spalib_sources = ['debug.c',
'props.c',
'format.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,
)