esp-idf/components/soc/CMakeLists.txt

56 lines
1.5 KiB
CMake
Raw Normal View History

idf_build_get_property(soc_name IDF_TARGET)
if(EXISTS "${COMPONENT_DIR}/${soc_name}")
include(${COMPONENT_DIR}/${soc_name}/sources.cmake)
spaces2list(SOC_SRCS)
add_prefix(srcs "${soc_name}/" ${SOC_SRCS})
set(include_dirs ${soc_name}/include)
endif()
list(APPEND include_dirs include)
list(APPEND srcs
"src/memory_layout_utils.c"
"src/lldesc.c"
2019-11-19 16:10:02 +08:00
"src/hal/rmt_hal.c"
2019-07-25 23:11:31 +08:00
"src/hal/rtc_io_hal.c"
2019-07-19 21:20:16 +08:00
"src/hal/dac_hal.c"
2019-09-09 20:56:46 +08:00
"src/hal/adc_hal.c"
"src/hal/spi_hal.c"
"src/hal/spi_hal_iram.c"
"src/hal/spi_slave_hal.c"
"src/hal/spi_slave_hal_iram.c"
2019-11-27 20:08:44 +08:00
"src/hal/touch_sensor_hal.c"
"src/soc_include_legacy_warn.c"
2019-07-15 14:44:15 +08:00
"src/hal/pcnt_hal.c"
2019-07-15 14:44:15 +08:00
"src/hal/i2s_hal.c"
"src/hal/sigmadelta_hal.c"
"src/hal/timer_hal.c"
"src/hal/ledc_hal.c"
"src/hal/ledc_hal_iram.c"
2019-06-05 11:32:20 +08:00
"src/hal/i2c_hal.c"
"src/hal/i2c_hal_iram.c"
2019-07-15 14:44:15 +08:00
"src/hal/gpio_hal.c"
2019-04-17 20:19:44 +08:00
"src/hal/uart_hal.c"
"src/hal/uart_hal_iram.c"
"src/hal/spi_flash_hal.c"
"src/hal/spi_flash_hal_iram.c"
2019-04-18 22:13:05 +08:00
)
2019-08-18 13:31:09 +08:00
if(IDF_TARGET STREQUAL "esp32")
2019-10-10 12:35:13 +08:00
list(APPEND srcs "src/hal/mcpwm_hal.c"
"src/hal/sdio_slave_hal.c"
"src/hal/can_hal.c"
"src/hal/can_hal_iram.c"
2019-10-10 12:35:13 +08:00
)
endif()
if(IDF_TARGET STREQUAL "esp32s2beta")
list(APPEND srcs "src/hal/spi_flash_hal_gpspi.c")
endif()
idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS "${include_dirs}"
PRIV_REQUIRES ${soc_name}
LDFRAGMENTS linker.lf)