Skip to content

Commit 4df802f

Browse files
jiaxli-QCJiaxing Li
authored andcommitted
Add qcbor library for security feature support.
Add qcbor library for security feature support. The qcbor library is used for decoding and encoding data structures. Signed-off-by: Jiaxing Li <[email protected]>
1 parent f76c700 commit 4df802f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
SUMMARY = "Qualcomm QCBOR library"
2+
DESCRIPTION = " \
3+
QCBOR is a powerful, commercial-quality CBOR encoder-decoder. \
4+
The qcbor library is used for decoding and encoding data structures. \
5+
"
6+
HOMEPAGE = "https://github.com/laurencelundblade/QCBOR.git"
7+
SECTION = "libs"
8+
9+
LICENSE = "BSD-3-Clause"
10+
LIC_FILES_CHKSUM = "file://LICENSE;md5=9abe2371333f4ab0e62402a486f308a5"
11+
12+
inherit cmake
13+
14+
SRC_URI = "\
15+
git://github.com/laurencelundblade/QCBOR.git;branch=master;protocol=https \
16+
"
17+
SRCREV = "7d9f0b787150d739ab50805008bc7142bc9b7822"
18+
PV = "0.0+git"
19+
20+
EXTRA_OECMAKE = " -DBUILD_QCBOR_TEST=APP"
21+
22+
do_install:append() {
23+
install -d ${D}${bindir}
24+
install -m 0755 ${WORKDIR}/build/test/qcbortest ${D}${bindir}/
25+
}
26+
27+
PACKAGES += "${PN}-test"
28+
29+
FILES:${PN}-bin += " ${bindir}/qcbortest"

0 commit comments

Comments
 (0)