esp_adc_cal: simplify CMakeLists.txt

pull/8460/head
Ivan Grokhotkov 2021-11-04 12:59:19 +01:00 zatwierdzone przez Armando
rodzic c7b9f94733
commit be542db463
2 zmienionych plików z 5 dodań i 20 usunięć

Wyświetl plik

@ -1,22 +1,7 @@
idf_build_get_property(target IDF_TARGET)
if(${target} STREQUAL "esp32")
idf_component_register(SRCS "esp_adc_cal_esp32.c"
INCLUDE_DIRS "include"
REQUIRES driver efuse)
set(srcs "esp_adc_cal_${target}.c")
elseif(${target} STREQUAL "esp32s2")
idf_component_register(SRCS "esp_adc_cal_esp32s2.c"
INCLUDE_DIRS "include"
REQUIRES driver efuse)
elseif(${target} STREQUAL "esp32c3")
idf_component_register(SRCS "esp_adc_cal_esp32c3.c"
INCLUDE_DIRS "include"
REQUIRES driver efuse)
elseif(${target} STREQUAL "esp32s3")
idf_component_register(SRCS "esp_adc_cal_esp32s3.c"
INCLUDE_DIRS "include"
REQUIRES driver efuse)
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS include
REQUIRES driver efuse)

Wyświetl plik

@ -2,5 +2,5 @@
# Component Makefile
#
COMPONENT_SRCDIRS := . $(IDF_TARGET)
COMPONENT_ADD_INCLUDEDIRS := include
COMPONENT_OBJEXCLUDE += esp_adc_cal_esp32s2.o esp_adc_cal_esp32c3.o esp_adc_cal_esp32h2.o esp_adc_cal_esp32s3.o