mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 00:25:07 +03:00
The Vector class from libipa is not used anymore. Drop it. Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com> Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
17 lines
631 B
Meson
17 lines
631 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
libipa_test = [
|
|
{'name': 'fixedpoint', 'sources': ['fixedpoint.cpp']},
|
|
{'name': 'interpolator', 'sources': ['interpolator.cpp']},
|
|
]
|
|
|
|
foreach test : libipa_test
|
|
exe = executable(test['name'], test['sources'],
|
|
dependencies : [libcamera_private, libipa_dep],
|
|
implicit_include_directories : false,
|
|
link_with : [test_libraries],
|
|
include_directories : [test_includes_internal,
|
|
'../../../src/ipa/libipa/'])
|
|
|
|
test(test['name'], exe, suite : 'ipa')
|
|
endforeach
|