summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2026-04-10 09:09:57 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-10 08:03:22 -0700
commit7c62c49ef490f6bac21ce7d9effabda59ed372d0 (patch)
treec9e33af95ee20f2cc5995541ffd0a2d89dcd2899 /meta-oe
parent69b6ae56b78ea1c9b5f11002e0e47573c22fe476 (diff)
downloadmeta-openembedded-7c62c49ef490f6bac21ce7d9effabda59ed372d0.tar.gz
crow: add new recipe
Crow is a C++ framework for creating HTTP or Websocket web services. Disable tests as they are using CPM (Cmake Dependency Manager), which would be downloading the test dependencies in configuration step. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-support/crow/crow_1.3.2.bb20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/crow/crow_1.3.2.bb b/meta-oe/recipes-support/crow/crow_1.3.2.bb
new file mode 100644
index 0000000000..09970fcfc2
--- /dev/null
+++ b/meta-oe/recipes-support/crow/crow_1.3.2.bb
@@ -0,0 +1,20 @@
1SUMMARY = "A Fast and Easy to use microframework for the web"
2HOMEPAGE = "https://crowcpp.org/"
3DESCRIPTION = "Crow is a C++ framework for creating HTTP or Websocket web services. \
4It uses routing similar to Python's Flask which makes it easy to use. \
5It is also extremely fast, beating multiple existing C++ frameworks as well as non-C++ frameworks."
6SECTION = "libs"
7LICENSE = "BSD-3-Clause"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=e08502e395a6f7c037ddfe7d2915f58e"
9
10SRC_URI = "git://github.com/CrowCpp/Crow.git;protocol=https;branch=v1.3;tag=v${PV}"
11SRCREV = "f8c060c51feeca2c65828fb6f538603db4392d55"
12
13inherit cmake
14
15DEPENDS = "asio"
16
17EXTRA_OECMAKE = "\
18 -DCROW_BUILD_EXAMPLES=OFF \
19 -DCROW_BUILD_TESTS=OFF \
20"