1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

pkg/tinycbor: initial import

This commit is contained in:
Koen Zandberg 2018-05-23 16:58:25 +02:00
parent d52186a169
commit c4bfba7681
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B
3 changed files with 22 additions and 0 deletions

11
pkg/tinycbor/Makefile Normal file
View File

@ -0,0 +1,11 @@
PKG_NAME=tinycbor
PKG_URL=https://github.com/intel/tinycbor
PKG_VERSION=v0.5.1
PKG_LICENSE=MIT
.PHONY: all
all: git-download
"$(MAKE)" -C $(PKG_BUILDDIR)/src -f $(CURDIR)/Makefile.tinycbor
include $(RIOTBASE)/pkg/pkg.mk

View File

@ -0,0 +1 @@
INCLUDES += -I$(PKGDIRBASE)/tinycbor/src

View File

@ -0,0 +1,10 @@
MODULE := tinycbor
SRC += cborerrorstrings.c
SRC += cborencoder.c
SRC += cborencoder_close_container_checked.c
SRC += cborparser.c
SRC += cborpretty.c
SRC += cborvalidation.c
include $(RIOTBASE)/Makefile.base