mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
8 lines
303 B
CMake
8 lines
303 B
CMake
idf_component_register(SRCS "test_startup_main.c"
|
|
INCLUDE_DIRS ".")
|
|
|
|
if(CONFIG_SINGLE_CORE_VARIANT)
|
|
target_sources(${COMPONENT_LIB} PRIVATE "${CMAKE_CURRENT_LIST_DIR}/chip_info_patch.c")
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--wrap=esp_chip_info")
|
|
endif()
|