diff options
Diffstat (limited to 'meta-oe/recipes-support/boost-sml/boost-sml_1.1.12.bb')
-rw-r--r-- | meta-oe/recipes-support/boost-sml/boost-sml_1.1.12.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/boost-sml/boost-sml_1.1.12.bb b/meta-oe/recipes-support/boost-sml/boost-sml_1.1.12.bb new file mode 100644 index 0000000000..0a2514237a --- /dev/null +++ b/meta-oe/recipes-support/boost-sml/boost-sml_1.1.12.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "[Boost::ext].SML (State Machine Language)" | ||
2 | DESCRIPTION = "Your scalable C++14 one header only State Machine Library with no dependencies" | ||
3 | HOMEPAGE = "https://github.com/boost-ext/sml" | ||
4 | BUGTRACKER = "https://github.com/boost-ext/sml/issues" | ||
5 | SECTION = "libs" | ||
6 | LICENSE = "BSL-1.0" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=e4224ccaecb14d942c71d31bef20d78c" | ||
8 | |||
9 | DEPENDS += "boost qemu-native" | ||
10 | |||
11 | SRC_URI = "git://github.com/boost-ext/sml.git;protocol=https;branch=master" | ||
12 | SRCREV = "cd3ef80206b71463de96d6b682cfdc99703ec147" | ||
13 | |||
14 | |||
15 | inherit cmake | ||
16 | |||
17 | # Building benchmarks takes a lot of time and requires additional headers (euml2.hpp) | ||
18 | # Building examples fail with gcc-12 | ||
19 | EXTRA_OECMAKE:append = " -DSML_BUILD_BENCHMARKS:bool=OFF -DSML_BUILD_EXAMPLES=OFF" | ||
20 | |||
21 | # [boost::ext].XML is a header only C++ library, so the main package will be empty. | ||
22 | ALLOW_EMPTY:${PN} = "1" | ||
23 | |||
24 | BBCLASSEXTEND = "nativesdk" | ||