Move the GPLv2 utilities used for generating public and private keys to the utilities subtree. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
26 lines
555 B
Meson
26 lines
555 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
subdir('android')
|
|
|
|
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
|
|
|
|
subdir('libcamera')
|
|
subdir('ipa')
|
|
subdir('cam')
|
|
subdir('qcam')
|
|
|
|
if get_option('v4l2')
|
|
subdir('v4l2')
|
|
endif
|
|
|
|
subdir('gstreamer')
|