summaryrefslogtreecommitdiff
path: root/test/ipa/meson.build
blob: dc956284c4b1698d4ef4b80fdc8f0c28612d985b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: CC0-1.0

subdir('rkisp1')

ipa_test = [
    {'name': 'ipa_module_test', 'sources': ['ipa_module_test.cpp']},
    {'name': 'ipa_interface_test', 'sources': ['ipa_interface_test.cpp']},
]

foreach test : ipa_test
    exe = executable(test['name'], test['sources'], libcamera_generated_ipa_headers,
                     dependencies : libcamera_private,
                     link_with : [libipa, test_libraries],
                     include_directories : [libipa_includes, test_includes_internal])

    test(test['name'], exe, suite : 'ipa')
endforeach