mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Koen Zandberg
0b65a33979
This release fixed some bugs related to disabling float support in the parser. The float support is now optional and can be enabled by including the tinycbor_float module. This allows for compiling on AVR as that platform doesn't support the float specific defines used by tinycbor.
9 lines
209 B
Makefile
9 lines
209 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/tinycbor/src
|
|
|
|
ifeq (,$(filter tinycbor_float,$(USEMODULE)))
|
|
CFLAGS += -DCBOR_NO_FLOATING_POINT
|
|
endif
|
|
|
|
# Declare pseudomodules here to be selfcontained
|
|
PSEUDOMODULES += tinycbor_%
|