diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2021-05-24 17:23:52 +0900 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2021-05-27 18:21:47 +0900 |
commit | 52f5f0125b31dac8635ce4e7a9b101522e8bd07c (patch) | |
tree | d87027a4c65eb0125b55c373e29dd1d63dab51e9 | |
parent | c707eb533a4c582e7377d2ad617482459da385f1 (diff) |
meson: ipa: Pass core.mojom to the docs generator
We don't want to generate the same functional files for core.mojom as
the other mojom files, but we do want to generate the documentation cpp
files. Add core.mojom to the mojom files list after the main generation
is complete, so that the documentation generator can pick it up.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
-rw-r--r-- | include/libcamera/ipa/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libcamera/ipa/meson.build b/include/libcamera/ipa/meson.build index 729483ab..81fb69f0 100644 --- a/include/libcamera/ipa/meson.build +++ b/include/libcamera/ipa/meson.build @@ -145,3 +145,6 @@ foreach file : ipa_mojom_files endforeach ipa_mojom_files = files(ipa_mojom_files) + +# Pass this to the documentation generator in src/libcamera/ipa +ipa_mojom_files += files(['core.mojom']) |