summaryrefslogtreecommitdiff
path: root/src/ipa
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2020-12-05 19:30:53 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2021-02-16 19:21:52 +0900
commit18b3e27461f8d6e3115c932f2799851cbb62e357 (patch)
tree332f9a6900edef0e06bc9cfe83039314e8131861 /src/ipa
parente45bddeb934784e4dde1918ff65165fbd9544fd2 (diff)
ipa: raspberrypi: meson: Add dependency on generated headers
The raspberrypi IPA will depend on the raspberrypi IPA header generated from the mojo definition file. Add the dependency. Simply add all generated headers as a dependency, instead of walking the list of headers, to simplify the implementation. This will have the effect of generating all headers before compiling the IPA, which has no drawbacks. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/ipa')
-rw-r--r--src/ipa/raspberrypi/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/raspberrypi/meson.build b/src/ipa/raspberrypi/meson.build
index 9e9ea80b..9af75525 100644
--- a/src/ipa/raspberrypi/meson.build
+++ b/src/ipa/raspberrypi/meson.build
@@ -42,7 +42,7 @@ rpi_ipa_sources = files([
])
mod = shared_module(ipa_name,
- rpi_ipa_sources,
+ [rpi_ipa_sources, libcamera_generated_ipa_headers],
name_prefix : '',
include_directories : rpi_ipa_includes,
dependencies : rpi_ipa_deps,