mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-31 07:26:28 +08:00
18 lines
474 B
CMake
18 lines
474 B
CMake
set(COMPONENT_ADD_INCLUDEDIRS include include/freertos include/freertos/private port/esp8266/include port/esp8266/include/freertos)
|
|
set(COMPONENT_SRCDIRS "freertos" "port/esp8266")
|
|
set(COMPONENT_REQUIRES "esp8266")
|
|
|
|
register_component()
|
|
|
|
target_link_libraries(freertos "-Wl,--undefined=uxTopUsedPriority")
|
|
|
|
set_source_files_properties(
|
|
tasks.c
|
|
event_groups.c
|
|
timers.c
|
|
queue.c
|
|
ringbuf.c
|
|
PROPERTIES COMPILE_DEFINITIONS
|
|
_ESP_FREERTOS_INTERNAL
|
|
)
|