summaryrefslogtreecommitdiff
path: root/src/ipa/ipu3/meson.build
blob: 444c82453eac42ff562ef20a4fd9cc0f01a6d36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: CC0-1.0

ipa_name = 'ipa_ipu3'

mod = shared_module(ipa_name,
                    'ipu3.cpp',
                    name_prefix : '',
                    include_directories : [ ipa_includes, libipa_includes ],
                    dependencies : [ libatomic, libcamera_dep ],
                    link_with : libipa,
                    install : true,
                    install_dir : ipa_install_dir)

if ipa_sign_module
    custom_target(ipa_name + '.so.sign',
                  input : mod,
                  output : ipa_name + '.so.sign',
                  command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
                  install : false,
                  build_by_default : true)
endif