The libcamera_generated_ipa_headers variable, containing the list of generated IPA headers, is listed in the sources of IPA modules, as well as IPA tests. This was done to ensure that the modules and tests get rebuilt when the generate IPA headers change. However, the dependency is already handled through the libcamera_private dependency object, specified for all those modules and tests. There's no need to list the IPA generated headers as sources. Drop them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
15 lines
521 B
Meson
15 lines
521 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
rkisp1_ipa_test = [
|
|
{'name': 'rkisp1-utils', 'sources': ['rkisp1-utils.cpp']},
|
|
]
|
|
|
|
foreach test : rkisp1_ipa_test
|
|
exe = executable(test['name'], test['sources'],
|
|
dependencies : [libcamera_private, libipa_dep],
|
|
link_with : [test_libraries],
|
|
include_directories : [test_includes_internal,
|
|
'../../../src/ipa/rkisp1/'])
|
|
|
|
test(test['name'], exe, suite : 'ipa')
|
|
endforeach
|