summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2022-11-01 21:19:20 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2022-11-22 12:31:14 +0000
commit2619164b6998b2143e776a1c2f10140af9fe878b (patch)
tree4c9b370776e198d2288462c58713531a84750f09 /include
parent0e9c6b1e32f5ef38286ff2e0774ba69caf2eee7b (diff)
meson: Convert CMake to Meson build infrastructure
Provide infrastructure to be able to build the uvc-gadget library as a shared object and an executable which links against this as a dependency to implment the reference 'uvc-gadget' application. All existing cmake infrastructure is removed. This removes custom glob support that was previously used by an early development for Android, which is expected to be re-added later when required. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r--include/meson.build3
-rw-r--r--include/uvcgadget/meson.build16
2 files changed, 19 insertions, 0 deletions
diff --git a/include/meson.build b/include/meson.build
new file mode 100644
index 0000000..a4e0f08
--- /dev/null
+++ b/include/meson.build
@@ -0,0 +1,3 @@
+# SPDX-License-Identifier: CC0-1.0
+
+subdir('uvcgadget')
diff --git a/include/uvcgadget/meson.build b/include/uvcgadget/meson.build
new file mode 100644
index 0000000..c79ea18
--- /dev/null
+++ b/include/uvcgadget/meson.build
@@ -0,0 +1,16 @@
+# SPDX-License-Identifier: CC0-1.0
+
+uvcgadget_public_headers = files([
+ 'configfs.h',
+ 'events.h',
+ 'list.h',
+ 'stream.h',
+ 'v4l2-source.h',
+ 'video-source.h',
+ ])
+
+
+install_headers(uvcgadget_public_headers,
+ subdir : 'uvcgadget')
+
+includes = include_directories('.')