2020-01-08 12:50:03 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2018-01-12 13:49:13 +11:00
|
|
|
|
2020-01-19 10:02:21 +08:00
|
|
|
idf_component_register(SRCS "src/cpu_util.c"
|
|
|
|
"src/memory_layout_utils.c"
|
2020-01-08 12:50:03 +08:00
|
|
|
"src/lldesc.c"
|
|
|
|
"src/soc_include_legacy_warn.c"
|
|
|
|
"src/compare_set.c"
|
2020-08-08 20:15:27 +08:00
|
|
|
REQUIRES hal #cpu.h directly includes HAL header
|
2020-09-17 20:05:23 +08:00
|
|
|
INCLUDE_DIRS include
|
2020-01-08 12:50:03 +08:00
|
|
|
PRIV_REQUIRES ${target}
|
|
|
|
LDFRAGMENTS linker.lf)
|
2018-03-22 17:27:10 +11:00
|
|
|
|
2020-09-17 20:05:23 +08:00
|
|
|
add_subdirectory(soc)
|
2019-11-28 09:20:00 +08:00
|
|
|
|
2020-01-09 14:43:41 +08:00
|
|
|
add_subdirectory(src/${target})
|
2020-01-08 12:50:03 +08:00
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "soc_${target}")
|