e228c290c9
Headers which must not be exposed as part of the public libcamera API should include base/private.h. Any interface which includes the private.h header will only be able to build if the libcamera_private dependency is used (or the libcamera_base_private dependency directly). Build targets which are intended to use the private API's will use the libcamera_private to handle the automatic definition of the inclusion guard. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
24 lines
769 B
Meson
24 lines
769 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
ipa_name = 'ipa_vimc'
|
|
|
|
mod = shared_module(ipa_name,
|
|
['vimc.cpp', libcamera_generated_ipa_headers],
|
|
name_prefix : '',
|
|
include_directories : [ipa_includes, libipa_includes],
|
|
dependencies : libcamera_private,
|
|
link_with : libipa,
|
|
install : true,
|
|
install_dir : ipa_install_dir)
|
|
|
|
if ipa_sign_module
|
|
custom_target(ipa_name + '.so.sign',
|
|
input : mod,
|
|
output : ipa_name + '.so.sign',
|
|
command : [ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@'],
|
|
install : false,
|
|
build_by_default : true)
|
|
endif
|
|
|
|
subdir('data')
|