pipewire/spa/plugins/support/meson.build
Wim Taymans 4a219e81dd loop: move to plugin
Move the loop implementation to a plugin.
Organize the hooks in a list so that we can add many.
2017-06-14 16:27:04 +02:00

11 lines
440 B
Meson

spa_support_sources = ['mapper.c',
'logger.c',
'loop.c',
'plugin.c']
spa_support_lib = shared_library('spa-support',
spa_support_sources,
include_directories : [ spa_inc, spa_libinc],
dependencies : threads_dep,
install : true,
install_dir : '@0@/spa'.format(get_option('libdir')))