Add esp_http_client and expose it to TactilityC (#341)

This commit is contained in:
Ken Van Hoeylandt
2025-09-20 13:07:34 +02:00
committed by GitHub
parent 41ad569154
commit a4d15b2a1e
3 changed files with 101 additions and 3 deletions
+19 -1
View File
@@ -6,7 +6,25 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
if (DEFINED ENV{ESP_IDF_VERSION})
file(GLOB_RECURSE SOURCE_FILES Source/*.c*)
list(APPEND REQUIRES_LIST TactilityCore lvgl driver elf_loader lv_screenshot QRCode esp_lvgl_port minitar minmea esp_wifi nvs_flash spiffs vfs fatfs lwip esp_http_server)
list(APPEND REQUIRES_LIST
TactilityCore
lvgl
driver
elf_loader
lv_screenshot
QRCode
esp_http_server
esp_http_client
esp_lvgl_port
esp_wifi
minitar
minmea
nvs_flash
spiffs
vfs
fatfs
lwip
)
if ("${IDF_TARGET}" STREQUAL "esp32s3")
list(APPEND REQUIRES_LIST esp_tinyusb)
endif ()