summaryrefslogtreecommitdiff
path: root/src/ipa/vimc/meson.build
blob: 3097a12f964a52b848d1f20041b706106b7dde48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ipa_name = 'ipa_vimc'

mod = shared_module(ipa_name,
                    'vimc.cpp',
                    name_prefix : '',
                    include_directories : [ipa_includes, libipa_includes],
                    dependencies : libcamera_dep,
                    link_with : libipa,
                    install : true,
                    install_dir : ipa_install_dir,
                    cpp_args : '-DLICENSE="LGPL-2.1-or-later"')

custom_target(ipa_name + '.so.sign',
              input : mod,
              output : ipa_name + '.so.sign',
              command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
              install : true,
              install_dir : ipa_install_dir)