Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
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
|
|
}
|
|
|