[libcamera-devel,RFC,v1,3/3] pipeline: isp: All meson configure files
diff mbox series

Message ID tencent_5FFF6E937CA91A10D22AA1729DDF417B5409@qq.com
State Superseded
Headers show
Series
  • pipeline: isp: The software ISP Module
Related show

Commit Message

Siyuan Fan Aug. 4, 2021, 7:33 a.m. UTC
From: Fan Siyuan <siyuan.fan@foxmail.com>

Add all meson configure file the software ISP module needs.
After configuration completed, we can enable the software ISP.

Signed-off-by: Fan Siyuan <siyuan.fan@foxmail.com>

---
 meson_options.txt                      | 2 +-
 src/libcamera/pipeline/isp/meson.build | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 src/libcamera/pipeline/isp/meson.build

Patch
diff mbox series

diff --git a/meson_options.txt b/meson_options.txt
index 2c80ad8b..03110587 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -37,7 +37,7 @@  option('lc-compliance',
 
 option('pipelines',
         type : 'array',
-        choices : ['ipu3', 'raspberrypi', 'rkisp1', 'simple', 'uvcvideo', 'vimc'],
+        choices : ['ipu3', 'raspberrypi', 'rkisp1', 'simple', 'uvcvideo', 'vimc', 'isp'],
         description : 'Select which pipeline handlers to include')
 
 option('qcam',
diff --git a/src/libcamera/pipeline/isp/meson.build b/src/libcamera/pipeline/isp/meson.build
new file mode 100644
index 00000000..562b83b5
--- /dev/null
+++ b/src/libcamera/pipeline/isp/meson.build
@@ -0,0 +1,6 @@ 
+# SPDX-License-Identifier: CC0-1.0
+
+libcamera_sources += files([
+    'isp.cpp',
+    'isp_processing.cpp',
+])