CMakeLists.txt REQUIRES 'cJSON' fails on IDF v5.2 — component manager installs it as 'espressif__cjson'. Update the require name to match. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
429 B
CMake
24 lines
429 B
CMake
idf_component_register(
|
|
SRCS
|
|
"main.c"
|
|
"orin_serial.c"
|
|
"vesc_can.c"
|
|
"gc9a01.c"
|
|
"gitea_ota.c"
|
|
"ota_self.c"
|
|
"uart_ota.c"
|
|
"ota_display.c"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES
|
|
esp_wifi
|
|
esp_http_client
|
|
esp_https_ota
|
|
nvs_flash
|
|
app_update
|
|
mbedtls
|
|
espressif__cjson
|
|
driver
|
|
freertos
|
|
esp_timer
|
|
)
|