blob: 4d2427dbd4e74a639258284eba5aa65da431cb2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# SPDX-License-Identifier: CC0-1.0
libipa_test = [
{'name': 'interpolator', 'sources': ['interpolator.cpp']},
]
foreach test : libipa_test
exe = executable(test['name'], test['sources'],
dependencies : [libcamera_private, libipa_dep],
link_with : [test_libraries],
include_directories : [test_includes_internal,
'../../../src/ipa/libipa/'])
test(test['name'], exe, suite : 'ipa')
endforeach
|