Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: lhdjply <lhdjply@126.com>
  • Loading branch information
lhdjply committed Jul 24, 2024
1 parent fd975d5 commit 00dc661
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ports/esp32/main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ set(IDF_COMPONENTS
bootloader_support
bt
driver
esp_adc_cal
esp_common
esp_eth
esp_event
Expand All @@ -135,6 +134,12 @@ set(IDF_COMPONENTS
nghttp
)

if(IDF_VERSION_MAJOR GREATER_EQUAL 5)
list(APPEND IDF_COMPONENTS esp_adc_cal)
elseif(IDF_VERSION_MAJOR GREATER_EQUAL 4)
list(APPEND IDF_COMPONENTS esp_adc_cal)
endif()

if(IDF_VERSION_MINOR GREATER_EQUAL 1 OR IDF_VERSION_MAJOR GREATER_EQUAL 5)
list(APPEND IDF_COMPONENTS esp_netif)
endif()
Expand Down

0 comments on commit 00dc661

Please sign in to comment.