mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 19:43:52 +01:00
Changes the include path for ESP32 SDK crypto function headers to find their modified version in vendor codefirst.
15 lines
686 B
Makefile
15 lines
686 B
Makefile
MODULE=esp_idf_esp32
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/include/log
|
|
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/wpa_supplicant/include
|
|
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/wpa_supplicant/port/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/esp32
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/esp32/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/nvs_flash/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/soc/esp32/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/smartconfig_ack/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/wpa_supplicant/include
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/wpa_supplicant/port/include
|