logger: add loadable logger

This commit is contained in:
Wim Taymans 2017-06-05 15:59:11 +02:00
parent 2b5e5f29f7
commit 1feec309ec
7 changed files with 314 additions and 4 deletions

View file

@ -0,0 +1,9 @@
spa_logger_sources = ['logger.c', 'plugin.c']
spa_logger_lib = shared_library('spa-logger',
spa_logger_sources,
include_directories : [ spa_inc, spa_libinc],
dependencies : threads_dep,
link_with : spalib,
install : true,
install_dir : '@0@/spa'.format(get_option('libdir')))