blob: f605a420c3ee11b9eac63e67398a74b4188d572f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
if get_option('android')
subdir('android')
endif
openssl = find_program('openssl', required : true)
if openssl.found()
ipa_gen_priv_key = find_program('ipa/gen-ipa-priv-key.sh')
ipa_priv_key = custom_target('ipa-priv-key',
output : [ 'ipa-priv-key.pem' ],
command : [ ipa_gen_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')
|