mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
16 lines
486 B
CMake
16 lines
486 B
CMake
set(srcs)
|
|
set(priv_req efuse)
|
|
set(public_include "include")
|
|
if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
|
list(APPEND srcs "src/temperature_sensor.c")
|
|
if(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM)
|
|
list(APPEND srcs "src/temperature_sensor_etm.c")
|
|
endif()
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
REQUIRES esp_hal_ana_conv
|
|
PRIV_REQUIRES ${priv_req}
|
|
)
|