forked from espressif/esp-idf
25 lines
732 B
CMake
25 lines
732 B
CMake
![]() |
set(srcs "brownout_hal.c"
|
||
|
"rtc_clk.c"
|
||
|
"rtc_clk_init.c"
|
||
|
"rtc_init.c"
|
||
|
"rtc_pm.c"
|
||
|
"rtc_sleep.c"
|
||
|
"rtc_time.c"
|
||
|
"soc_memory_layout.c"
|
||
|
"touch_sensor_hal.c")
|
||
|
|
||
|
if(NOT BOOTLOADER_BUILD AND CONFIG_ETH_USE_ESP32_EMAC)
|
||
|
list(APPEND srcs "emac_hal.c")
|
||
|
endif()
|
||
|
|
||
|
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" "${srcs}")
|
||
|
|
||
|
target_sources(${COMPONENT_LIB} PRIVATE "${srcs}")
|
||
|
target_include_directories(${COMPONENT_LIB} PUBLIC . include)
|
||
|
target_include_directories(${COMPONENT_LIB} PRIVATE ../hal)
|
||
|
|
||
|
if(NOT CMAKE_BUILD_EARLY_EXPANSION)
|
||
|
set_source_files_properties("${CMAKE_CURRENT_LIST_DIR}/rtc_clk.c" PROPERTIES
|
||
|
COMPILE_FLAGS "-fno-jump-tables -fno-tree-switch-conversion")
|
||
|
endif()
|