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
28 lines
496 B
BlitzBasic
28 lines
496 B
BlitzBasic
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
SUMMARY = "A C++ example compiled with meson."
|
|
|
|
require cpp-example.inc
|
|
|
|
SRC_URI += "\
|
|
file://meson.build \
|
|
file://meson.options \
|
|
"
|
|
|
|
inherit pkgconfig meson
|
|
|
|
PACKAGECONFIG[failing_test] = "-DFAILING_TEST=enabled"
|
|
|
|
FILES:${PN}-ptest += "${bindir}/test-mesonex"
|
|
|
|
do_run_tests () {
|
|
meson test -C "${B}" --no-rebuild
|
|
}
|
|
do_run_tests[doc] = "Run meson test using qemu-user"
|
|
|
|
addtask do_run_tests after do_compile
|