rp2040/component/os/freertos/CMakeLists.txt

19 lines
438 B
CMake
Raw Normal View History

2025-06-08 17:47:47 +08:00
file(GLOB FILELIST
tasks.c
queue.c
list.c
timers.c
stream_buffer.c
event_groups.c
croutine.c
portable/GCC/ARM_CM0/port.c
portable/GCC/ARM_CM0/portasm.c
portable/MemMang/heap_4.c
)
set(TARGET freertos)
add_library(${TARGET} STATIC ${FILELIST})
target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/portable/GCC/ARM_CM0)