diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-10-20 01:11:57 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-10-20 13:36:26 +0300 |
commit | cd5439fb97518d8bce0eb2af3f9562d6fd593acf (patch) | |
tree | c161f8f4c1f65d89c5a30f5613941e993aeb56b9 /src/apps/cam/meson.build | |
parent | 84ad104499d9efc0253dae1a60ee070ed375ad95 (diff) |
apps: Move libevent dependency to src/apps/meson.build
libevent is a shared dependency between cam and lc-compliance, move it to
src/apps/. The shared dependency will be used to condition compilation
of source files in an upcoming application static library.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/apps/cam/meson.build')
-rw-r--r-- | src/apps/cam/meson.build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/apps/cam/meson.build b/src/apps/cam/meson.build index 06dbea06..4b6099dd 100644 --- a/src/apps/cam/meson.build +++ b/src/apps/cam/meson.build @@ -1,8 +1,6 @@ # SPDX-License-Identifier: CC0-1.0 -libevent = dependency('libevent_pthreads', required : get_option('cam')) - -if not libevent.found() +if opt_cam.disabled() or not libevent.found() cam_enabled = false subdir_done() endif |