2021-05-13 05:04:31 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2024-03-11 09:44:33 -04:00
|
|
|
|
2024-05-02 05:24:23 -04:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
set(system_target "noos")
|
|
|
|
else()
|
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
set(system_target "linux")
|
|
|
|
else()
|
|
|
|
set(system_target "os")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(srcs "src/${system_target}/log_timestamp.c")
|
2021-06-02 23:59:00 -04:00
|
|
|
set(priv_requires "")
|
2024-03-11 09:44:33 -04:00
|
|
|
|
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
list(APPEND srcs "log_noos.c")
|
2021-05-13 05:04:31 -04:00
|
|
|
else()
|
2024-02-28 13:33:12 -05:00
|
|
|
list(APPEND srcs "src/os/log_write.c")
|
2024-03-11 09:44:33 -04:00
|
|
|
|
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
list(APPEND srcs "log_linux.c")
|
|
|
|
else()
|
|
|
|
list(APPEND srcs "log_freertos.c")
|
|
|
|
list(APPEND priv_requires soc hal esp_hw_support)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Buffer APIs call ESP_LOG_LEVEL -> esp_log_write, which can not used in bootloader.
|
|
|
|
list(APPEND srcs "src/buffer/log_buffers.c"
|
|
|
|
"src/util.c")
|
2024-02-28 13:33:12 -05:00
|
|
|
|
|
|
|
list(APPEND srcs "src/log_level/log_level.c"
|
|
|
|
"src/log_level/tag_log_level/tag_log_level.c")
|
|
|
|
|
|
|
|
if(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST OR CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST)
|
|
|
|
list(APPEND srcs "src/log_level/tag_log_level/linked_list/log_linked_list.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY)
|
|
|
|
list(APPEND srcs "src/log_level/tag_log_level/cache/log_array.c")
|
|
|
|
elseif(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP)
|
|
|
|
list(APPEND srcs "src/log_level/tag_log_level/cache/log_binary_heap.c")
|
|
|
|
endif()
|
2021-05-13 05:04:31 -04:00
|
|
|
endif()
|
2019-11-21 12:40:59 -05:00
|
|
|
|
|
|
|
idf_component_register(SRCS ${srcs}
|
2024-02-28 13:33:12 -05:00
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
PRIV_INCLUDE_DIRS "include/esp_private"
|
|
|
|
LDFRAGMENTS linker.lf
|
|
|
|
PRIV_REQUIRES ${priv_requires})
|