mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
We cannot fix package headers downstream, so we can just as well tell the compiler to not warn about them.
13 lines
406 B
Makefile
13 lines
406 B
Makefile
# Using -isystem instead of -I to prevent warnings for the following headers
|
|
INCLUDES += -isystem$(PKGDIRBASE)/lorabasicsmodem \
|
|
#
|
|
|
|
ifneq (,$(filter lorabasics_driver_sx1280_hal,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lorabasics/driver_sx1280_hal
|
|
|
|
# In the lorabasics package setting this define includes RAL code for the sx1280 radio
|
|
CFLAGS += -DSX1280
|
|
endif
|
|
|
|
PSEUDOMODULES += lorabasics
|