spa: fix header instal paths

This commit is contained in:
Wim Taymans 2017-11-20 12:44:35 +01:00
parent 2fd5bcb623
commit 7f931464e8

View file

@ -1,30 +1,78 @@
spa_headers = [ spa_buffer_headers = [
'buffer/buffer.h', 'buffer/buffer.h',
'buffer/meta.h', 'buffer/meta.h',
]
install_headers(spa_buffer_headers,
subdir : 'spa/buffer')
spa_clock_headers = [
'clock/clock.h', 'clock/clock.h',
]
install_headers(spa_clock_headers,
subdir : 'spa/clock')
spa_graph_headers = [
'graph/graph.h', 'graph/graph.h',
]
install_headers(spa_graph_headers,
subdir : 'spa/graph')
spa_monitor_headers = [
'monitor/monitor.h', 'monitor/monitor.h',
]
install_headers(spa_monitor_headers,
subdir : 'spa/monitor')
spa_node_headers = [
'node/command.h', 'node/command.h',
'node/event.h', 'node/event.h',
'node/node.h', 'node/node.h',
]
install_headers(spa_node_headers,
subdir : 'spa/node')
spa_param_headers = [
'param/param.h', 'param/param.h',
'param/props.h', 'param/props.h',
'param/buffers.h', 'param/buffers.h',
'param/meta.h', 'param/meta.h',
'param/format.h', 'param/format.h',
'param/format-utils.h', 'param/format-utils.h',
]
install_headers(spa_param_headers,
subdir : 'spa/param')
spa_pod_headers = [
'pod/pod.h', 'pod/pod.h',
'pod/builder.h', 'pod/builder.h',
'pod/command.h', 'pod/command.h',
'pod/event.h', 'pod/event.h',
'pod/iter.h', 'pod/iter.h',
'pod/parser.h', 'pod/parser.h',
]
install_headers(spa_pod_headers,
subdir : 'spa/pod')
spa_support_headers = [
'support/log.h', 'support/log.h',
'support/log-impl.h', 'support/log-impl.h',
'support/loop.h', 'support/loop.h',
'support/plugin.h', 'support/plugin.h',
'support/type-map.h', 'support/type-map.h',
'support/type-map-impl.h', 'support/type-map-impl.h',
]
install_headers(spa_support_headers,
subdir : 'spa/support')
spa_utils_headers = [
'utils/defs.h', 'utils/defs.h',
'utils/dict.h', 'utils/dict.h',
'utils/hook.h', 'utils/hook.h',
@ -33,7 +81,8 @@ spa_headers = [
'utils/type.h', 'utils/type.h',
] ]
install_headers(spa_headers, subdir : 'spa') install_headers(spa_utils_headers,
subdir : 'spa/utils')
spa_audio_headers = [ spa_audio_headers = [
'param/audio/format.h', 'param/audio/format.h',