Install all header files

This commit is contained in:
Linus Svensson 2017-05-16 09:24:21 +02:00 committed by Wim Taymans
parent 49d635ae68
commit a5c9ba1e5b
2 changed files with 35 additions and 0 deletions

View file

@ -9,9 +9,12 @@ spa_headers = [
'event.h',
'event-node.h',
'format.h',
'format-builder.h',
'format-utils.h',
'list.h',
'log.h',
'loop.h',
'meta.h',
'monitor.h',
'node.h',
'plugin.h',
@ -26,3 +29,27 @@ spa_headers = [
]
install_headers(spa_headers, subdir : 'spa')
spa_audio_headers = [
'audio/format.h',
'audio/format-utils.h',
'audio/raw.h',
'audio/raw-utils.h',
]
install_headers(spa_audio_headers,
subdir : 'spa/audio')
spa_video_headers = [
'video/chroma.h',
'video/color.h',
'video/encoded.h',
'video/format.h',
'video/format-utils.h',
'video/multiview.h',
'video/raw.h',
'video/raw-utils.h',
]
install_headers(spa_video_headers,
subdir : 'spa/video')

View file

@ -1,3 +1,11 @@
spalib_headers = [
'debug.h',
'mapper.h',
'props.h',
]
install_headers(spalib_headers, subdir : 'spa/lib')
spalib_sources = ['debug.c',
'mapper.c',
'props.c',