mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
4d64a20ff6
Changelog: ========== - Fix problems with enum intsize introduced in 0.4.8 - Fix Python pkg_resources deprecation - Add option to discard deprecated fields - Use fallback_type when breaking circular dependencies - Discard autogenerated map entry types if the field is skipped - Use pb_byte_t = uint8_t when available - Add enum_validate option - Add check_return attribute for IAR compiler - Add label_override field option - Add Zephyr module specification - Add Apple privacy manifest - Bazel rule improvements, including bzlmod migration - CMake build rule improvements - Improve C++ descriptors - Test case improvements - Update dependency package versions - Documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
412 B
BlitzBasic
18 lines
412 B
BlitzBasic
require nanopb.inc
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-Dnanopb_PROTOC_PATH=/bin/false \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-Dnanopb_BUILD_RUNTIME=ON \
|
|
-Dnanopb_BUILD_GENERATOR=OFF \
|
|
"
|
|
|
|
# Maintain compatability with old header locations for packages
|
|
# which haven't yet migrated to `nanopb/pb*.h`
|
|
do_install:append() {
|
|
for hdr in ${D}${includedir}/nanopb/*; do
|
|
ln -sv nanopb/$(basename "$hdr") ${D}${includedir}/
|
|
done
|
|
}
|
|
|