mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
771 B
CMake
27 lines
771 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"
|
||
|
"rtc_wdt.c"
|
||
|
"sdio_slave_hal.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()
|