From a5c9ba1e5b9a962692bbb8224bd743e48aa2cba4 Mon Sep 17 00:00:00 2001 From: Linus Svensson Date: Tue, 16 May 2017 09:24:21 +0200 Subject: [PATCH] Install all header files --- spa/include/spa/meson.build | 27 +++++++++++++++++++++++++++ spa/lib/meson.build | 8 ++++++++ 2 files changed, 35 insertions(+) diff --git a/spa/include/spa/meson.build b/spa/include/spa/meson.build index 1a695cfa4..a75801315 100644 --- a/spa/include/spa/meson.build +++ b/spa/include/spa/meson.build @@ -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') diff --git a/spa/lib/meson.build b/spa/lib/meson.build index be7ae1238..af07e8d46 100644 --- a/spa/lib/meson.build +++ b/spa/lib/meson.build @@ -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',