Files
external_libcamera/test/ipa/meson.build
T
Laurent Pinchart 2ee8faf3c8 test: Rename 't' to 'test' in meson.build
The 't' name is very short and not very explicit. Rename it to 'test'
instead.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
2022-10-07 17:05:33 +03:00

16 lines
507 B
Meson

# SPDX-License-Identifier: CC0-1.0
ipa_test = [
['ipa_module_test', 'ipa_module_test.cpp'],
['ipa_interface_test', 'ipa_interface_test.cpp'],
]
foreach test : ipa_test
exe = executable(test[0], [test[1], libcamera_generated_ipa_headers],
dependencies : libcamera_private,
link_with : [libipa, test_libraries],
include_directories : [libipa_includes, test_includes_internal])
test(test[0], exe, suite : 'ipa')
endforeach