mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
721 B
BlitzBasic
24 lines
721 B
BlitzBasic
DESCRIPTION = "A modern, C++-native, header-only, test framework for unit-tests, \
|
|
TDD and BDD - using C++11, C++14, C++17 and later."
|
|
HOMEPAGE = "https://github.com/catchorg/Catch2"
|
|
LICENSE = "BSL-1.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
|
|
|
|
SRC_URI = "git://github.com/catchorg/Catch2.git;branch=devel;protocol=https;tag=v${PV}"
|
|
SRCREV = "29c9844f688acb27c87338c39cd186ebfe41aa19"
|
|
|
|
|
|
inherit cmake python3native
|
|
|
|
do_install:append() {
|
|
rm ${D}${datadir}/Catch2/lldbinit
|
|
rm ${D}${datadir}/Catch2/gdbinit
|
|
rmdir ${D}${datadir}/Catch2/
|
|
}
|
|
|
|
# Header-only library
|
|
RDEPENDS:${PN}-dev = ""
|
|
RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|