pipewire/spa/include/spa/meson.build

139 lines
2.7 KiB
Meson
Raw Normal View History

2017-11-20 12:44:35 +01:00
spa_buffer_headers = [
2019-01-08 12:26:32 +01:00
'buffer/alloc.h',
'buffer/buffer.h',
'buffer/meta.h',
2019-01-08 12:26:32 +01:00
'buffer/type-info.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_buffer_headers,
subdir : join_paths(spa_name, 'spa', 'buffer'))
2017-11-20 12:44:35 +01:00
2019-01-08 12:26:32 +01:00
spa_control_headers = [
'control/control.h',
'control/type-info.h',
]
install_headers(spa_control_headers,
subdir : join_paths(spa_name, 'spa', 'control'))
2019-01-08 12:26:32 +01:00
spa_debug_headers = [
'debug/buffer.h',
'debug/dict.h',
'debug/format.h',
'debug/mem.h',
'debug/node.h',
'debug/pod.h',
'debug/types.h',
]
install_headers(spa_debug_headers,
subdir : join_paths(spa_name, 'spa', 'debug'))
2019-01-08 12:26:32 +01:00
2017-11-20 12:44:35 +01:00
spa_graph_headers = [
'graph/graph.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_graph_headers,
subdir : join_paths(spa_name, 'spa', 'graph'))
2017-11-20 12:44:35 +01:00
spa_monitor_headers = [
2019-01-08 12:26:32 +01:00
'monitor/device.h',
'monitor/event.h',
2019-05-29 12:09:13 +03:00
'monitor/utils.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_monitor_headers,
subdir : join_paths(spa_name, 'spa', 'monitor'))
2017-11-20 12:44:35 +01:00
spa_node_headers = [
'node/command.h',
'node/event.h',
'node/io.h',
2019-11-21 13:04:01 +01:00
'node/keys.h',
2019-01-08 12:26:32 +01:00
'node/node.h',
'node/type-info.h',
2019-05-29 12:09:13 +03:00
'node/utils.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_node_headers,
subdir : join_paths(spa_name, 'spa', 'node'))
2017-11-20 12:44:35 +01:00
spa_param_headers = [
'param/format.h',
'param/format-utils.h',
2019-01-08 12:26:32 +01:00
'param/param.h',
'param/profiler.h',
2019-01-08 12:26:32 +01:00
'param/props.h',
'param/type-info.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_param_headers,
subdir : join_paths(spa_name, 'spa', 'param'))
2017-11-20 12:44:35 +01:00
spa_pod_headers = [
'pod/builder.h',
'pod/command.h',
2019-01-08 12:26:32 +01:00
'pod/compare.h',
'pod/event.h',
2019-01-08 12:26:32 +01:00
'pod/filter.h',
'pod/iter.h',
'pod/parser.h',
2019-01-08 12:26:32 +01:00
'pod/pod.h',
2019-02-15 12:27:42 +02:00
'pod/vararg.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_pod_headers,
subdir : join_paths(spa_name, 'spa', 'pod'))
2017-11-20 12:44:35 +01:00
spa_support_headers = [
2019-01-08 12:26:32 +01:00
'support/cpu.h',
'support/dbus.h',
'support/log.h',
'support/log-impl.h',
'support/loop.h',
'support/plugin.h',
'support/system.h',
2017-11-20 12:44:35 +01:00
]
install_headers(spa_support_headers,
subdir : join_paths(spa_name, 'spa', 'support'))
2017-11-20 12:44:35 +01:00
spa_utils_headers = [
'utils/defs.h',
'utils/dict.h',
'utils/hook.h',
2019-08-01 15:00:46 +03:00
'utils/keys.h',
'utils/list.h',
2019-08-01 15:00:46 +03:00
'utils/names.h',
2019-05-29 12:09:13 +03:00
'utils/result.h',
'utils/ringbuffer.h',
'utils/type.h',
2019-01-08 12:26:32 +01:00
'utils/type-info.h',
2016-09-26 12:15:52 +02:00
]
2017-11-20 12:44:35 +01:00
install_headers(spa_utils_headers,
subdir : join_paths(spa_name, 'spa', 'utils'))
2017-05-16 09:24:21 +02:00
spa_audio_headers = [
'param/audio/format.h',
'param/audio/format-utils.h',
2019-01-08 12:26:32 +01:00
'param/audio/layout.h',
'param/audio/raw.h',
2019-01-08 12:26:32 +01:00
'param/audio/type-info.h',
2017-05-16 09:24:21 +02:00
]
install_headers(spa_audio_headers,
subdir : join_paths(spa_name, 'spa', 'param', 'audio'))
2017-05-16 09:24:21 +02:00
spa_video_headers = [
'param/video/chroma.h',
'param/video/color.h',
'param/video/encoded.h',
'param/video/format.h',
'param/video/format-utils.h',
'param/video/multiview.h',
'param/video/raw.h',
2019-01-08 12:26:32 +01:00
'param/video/type-info.h',
2017-05-16 09:24:21 +02:00
]
install_headers(spa_video_headers,
subdir : join_paths(spa_name, 'spa', 'param', 'video'))