2023-05-05 10:09:15 +02:00
|
|
|
include ../Makefile.pkg_common
|
2018-10-17 21:02:28 +02:00
|
|
|
|
2024-02-01 13:55:02 +01:00
|
|
|
TEST_ON_CI_WHITELIST += native native64
|
2018-10-17 21:02:28 +02:00
|
|
|
|
|
|
|
USEPKG += libcose
|
2019-08-12 14:30:53 +02:00
|
|
|
# By default we use hacl as crypto backend, uncomment to use a different
|
|
|
|
# crypto backend.
|
2018-10-17 21:02:28 +02:00
|
|
|
USEMODULE += libcose_crypt_hacl
|
2019-08-12 14:30:53 +02:00
|
|
|
# USEMODULE += libcose_crypt_c25519
|
2018-10-17 21:02:28 +02:00
|
|
|
USEMODULE += memarray
|
|
|
|
USEMODULE += embunit
|
|
|
|
|
2019-08-12 14:30:53 +02:00
|
|
|
ifneq (,$(filter libcose_crypt_monocypher,$(USEMODULE)))
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(6*THREAD_STACKSIZE_DEFAULT\)
|
|
|
|
else
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(4*THREAD_STACKSIZE_DEFAULT\)
|
|
|
|
endif
|
|
|
|
|
2018-10-17 21:02:28 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|