pipewire/spa/lib/meson.build
Wim Taymans fc4fd1424a Add mapper
Ger rid of static ids for interfaces and replace with something we can
register dynamically
Implement logger.
2016-10-07 13:19:50 +02:00

19 lines
569 B
Meson

spalib_sources = ['audio-raw.c',
'buffer.c',
'control.c',
'debug.c',
'format.c',
'mapper.c',
'port.c',
'props.c',
'ringbuffer.c',
'video-raw.c']
spalib = shared_library('spa-lib',
spalib_sources,
include_directories : spa_inc,
install : true)
spalib_dep = declare_dependency(link_with : spalib,
include_directories : spa_inc,
)