cbor: Move header to cbor subdirectory

Prevents conflicts when multiple modules/packages provide a `cbor.h`
header.
This commit is contained in:
Koen Zandberg 2018-05-01 11:12:39 +02:00
parent 9c85ce1916
commit b81b12de4e
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B
2 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,10 @@ ifneq (,$(filter nhdp,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/sys/net/routing/nhdp USEMODULE_INCLUDES += $(RIOTBASE)/sys/net/routing/nhdp
endif endif
ifneq (,$(filter cbor,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/sys/cbor/include
endif
ifneq (,$(filter crypto,$(USEMODULE))) ifneq (,$(filter crypto,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/include/crypto USEMODULE_INCLUDES += $(RIOTBASE)/include/crypto
endif endif