2016-06-28 12:21:56 +02:00
|
|
|
spalib_sources = ['audio-raw.c',
|
2016-08-24 16:26:58 +02:00
|
|
|
'buffer.c',
|
2016-07-28 21:19:20 +02:00
|
|
|
'control.c',
|
2016-07-13 18:29:55 +02:00
|
|
|
'debug.c',
|
2016-08-25 14:10:38 +02:00
|
|
|
'format.c',
|
2016-10-07 13:14:32 +02:00
|
|
|
'mapper.c',
|
2016-10-03 19:43:42 +02:00
|
|
|
'port.c',
|
2016-06-28 12:21:56 +02:00
|
|
|
'props.c',
|
2016-07-05 17:58:34 +02:00
|
|
|
'video-raw.c']
|
2016-06-28 12:21:56 +02:00
|
|
|
|
|
|
|
|
spalib = shared_library('spa-lib',
|
|
|
|
|
spalib_sources,
|
2016-09-26 12:15:52 +02:00
|
|
|
include_directories : spa_inc,
|
2016-07-28 21:19:20 +02:00
|
|
|
install : true)
|
2016-09-26 12:15:52 +02:00
|
|
|
|
|
|
|
|
spalib_dep = declare_dependency(link_with : spalib,
|
|
|
|
|
include_directories : spa_inc,
|
|
|
|
|
)
|