Implement and expose the symbol and functions that the new cros camera API requires. Since we don't actually need them, leave them empty. Update meson accordingly. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
28 lines
686 B
Meson
28 lines
686 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
openssl = find_program('openssl', required : true)
|
|
if openssl.found()
|
|
ipa_priv_key = custom_target('ipa-priv-key',
|
|
output : ['ipa-priv-key.pem'],
|
|
command : [gen_ipa_priv_key, '@OUTPUT@'])
|
|
config_h.set('HAVE_IPA_PUBKEY', 1)
|
|
ipa_sign_module = true
|
|
else
|
|
ipa_sign_module = false
|
|
endif
|
|
|
|
libcamera_objects = []
|
|
|
|
# The 'android' subdir must be processed first, and the build targets
|
|
# are included directly into the libcamera library when this is enabled.
|
|
subdir('android')
|
|
|
|
subdir('libcamera')
|
|
subdir('ipa')
|
|
|
|
subdir('cam')
|
|
subdir('qcam')
|
|
|
|
subdir('gstreamer')
|
|
subdir('v4l2')
|