summaryrefslogtreecommitdiff
path: root/src/libcamera-helpers/meson.build
diff options
context:
space:
mode:
authorUmang Jain <umang.jain@ideasonboard.com>2021-06-22 13:02:08 +0530
committerUmang Jain <umang.jain@ideasonboard.com>2021-06-28 14:12:06 +0530
commitdaf1cf0c737bdee9e42a9aaf64af997609a90951 (patch)
treeb6c8c29b07c36eb9b7053f5d253a1fb6747591ab /src/libcamera-helpers/meson.build
parentaaed11a3dc55d8fb0a4702bffef1e9f80a562b3b (diff)
src: Import MappedBuffer class from libcamera
This libcamera internal class, needs to be imported from libcamera code base, in order to have standalone ipu3-ipa build. Other libcamera components required by ipu3-ipa, will be linked through libcamera_platform.so in subsequent commit. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Diffstat (limited to 'src/libcamera-helpers/meson.build')
-rw-r--r--src/libcamera-helpers/meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libcamera-helpers/meson.build b/src/libcamera-helpers/meson.build
new file mode 100644
index 0000000..444f212
--- /dev/null
+++ b/src/libcamera-helpers/meson.build
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: CC0-1.0
+
+# Implementation of internal libcamera internals
+libcamera_helpers = files([
+ 'mapped_buffer.cpp',
+])