xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/boost-sml/boost-sml_git.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "[Boost::ext].SML (State Machine Language)"
2DESCRIPTION = "Your scalable C++14 one header only State Machine Library with no dependencies"
3AUTHOR = "Krzysztof Jusiak"
4HOMEPAGE = "https://github.com/boost-ext/sml"
5BUGTRACKER = "https://github.com/boost-ext/sml/issues"
6SECTION = "libs"
7LICENSE = "BSL-1.0"
8LIC_FILES_CHKSUM = "file://LICENSE.md;md5=e4224ccaecb14d942c71d31bef20d78c"
9
10DEPENDS += "boost qemu-native"
11
12PV = "1.1.5"
13
14SRC_URI = "git://github.com/boost-ext/sml.git;protocol=https;branch=master"
15SRCREV = "7ed8f85fbe5b5af87bfb818e9e0347aaf7f7056d"
16
17S = "${WORKDIR}/git"
18
19inherit cmake
20
21# Building benchmarks takes a lot of time and requires additional headers (euml2.hpp)
22# Building examples fail with gcc-12
23EXTRA_OECMAKE:append = " -DSML_BUILD_BENCHMARKS:bool=OFF -DSML_BUILD_EXAMPLES=OFF"
24
25# [boost::ext].XML is a header only C++ library, so the main package will be empty.
26ALLOW_EMPTY:${PN} = "1"
27
28BBCLASSEXTEND = "nativesdk"
29