diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2022-12-14 23:17:31 +0000 |
---|---|---|
committer | Daniel Scally <dan.scally@ideasonboard.com> | 2023-01-16 13:10:15 +0000 |
commit | 3f6aee6a13233e9ffcbb133ab9490aead7e2ced3 (patch) | |
tree | b6aef69b052c7f77286d1842be14f03520af7782 /src/meson.build | |
parent | 006aa232ac92e3ccde06a3b1536d6e02e8496766 (diff) |
main: Provide a libcamera source
Allow callers to create a libcamera source when available. libcamera
support is optional, so conditionally compile the new options
depending on whether libcamera is available.
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index a457c28..b2fdd9a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -6,5 +6,5 @@ gadget = executable('uvc-gadget', 'main.c', dependencies : [ libuvcgadget, ], - include_directories : includes, + include_directories : [includes, config_includes], install : true) |