2018-10-26 05:14:19 +00:00
|
|
|
set(COMPONENT_SRCS "default_event_loop.c"
|
|
|
|
"esp_event.c"
|
2019-03-18 11:58:04 +00:00
|
|
|
"esp_event_private.c"
|
2018-11-06 03:09:32 +00:00
|
|
|
"event_loop_legacy.c"
|
|
|
|
"event_send.c")
|
|
|
|
|
2018-10-26 05:14:19 +00:00
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
|
|
|
set(COMPONENT_PRIV_INCLUDEDIRS "private_include")
|
|
|
|
|
2019-03-18 11:58:04 +00:00
|
|
|
set(COMPONENT_REQUIRES log tcpip_adapter)
|
|
|
|
set(COMPONENT_PRIV_REQUIRES ethernet)
|
2018-11-06 03:09:32 +00:00
|
|
|
set(COMPONENT_REQUIRES log tcpip_adapter ethernet)
|
2018-10-26 05:14:19 +00:00
|
|
|
|
2019-02-15 13:28:24 +00:00
|
|
|
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
|
|
|
|
|
2018-10-26 05:14:19 +00:00
|
|
|
register_component()
|
2019-02-15 13:28:24 +00:00
|
|
|
|
2019-04-29 10:54:02 +00:00
|
|
|
if(GCC_NOT_5_2_0 AND CONFIG_ESP_EVENT_LOOP_PROFILING)
|
2019-02-15 13:28:24 +00:00
|
|
|
# uses C11 atomic feature
|
|
|
|
set_source_files_properties(esp_event.c PROPERTIES COMPILE_FLAGS -std=gnu11)
|
2019-04-29 10:54:02 +00:00
|
|
|
endif()
|