summaryrefslogtreecommitdiff
path: root/src/ipa/vimc
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-27 04:39:49 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-28 01:54:53 +0300
commit58e6970ba7f5256734c6a0d11cb345b3071fb6d2 (patch)
tree7d8c3a6bf4f579e8ca10a90e7e6fdee7ac2f357f /src/ipa/vimc
parenta6de9030893753e5428ee912fe7c52fbf93febd1 (diff)
ipa: vimc: Add a dummy configuration file to the vimc IPA
The file will be used to test the corresponding APIs. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/ipa/vimc')
-rw-r--r--src/ipa/vimc/data/meson.build6
-rw-r--r--src/ipa/vimc/data/vimc.conf1
-rw-r--r--src/ipa/vimc/meson.build2
3 files changed, 9 insertions, 0 deletions
diff --git a/src/ipa/vimc/data/meson.build b/src/ipa/vimc/data/meson.build
new file mode 100644
index 00000000..c844926d
--- /dev/null
+++ b/src/ipa/vimc/data/meson.build
@@ -0,0 +1,6 @@
+conf_files = files([
+ 'vimc.conf',
+])
+
+install_data(conf_files,
+ install_dir : join_paths(ipa_data_dir, 'vimc'))
diff --git a/src/ipa/vimc/data/vimc.conf b/src/ipa/vimc/data/vimc.conf
new file mode 100644
index 00000000..b3cda758
--- /dev/null
+++ b/src/ipa/vimc/data/vimc.conf
@@ -0,0 +1 @@
+# Dummy configuration file for the vimc IPA.
diff --git a/src/ipa/vimc/meson.build b/src/ipa/vimc/meson.build
index a354096d..f8650ee8 100644
--- a/src/ipa/vimc/meson.build
+++ b/src/ipa/vimc/meson.build
@@ -17,3 +17,5 @@ if ipa_sign_module
install : true,
install_dir : ipa_install_dir)
endif
+
+subdir('data')