1
0
forked from me/IronOS
Files
IronOS/source/Middlewares/FreeRTOS/CMakeLists.txt
Ben V. Brown e6a080c33d CMake
2022-06-20 17:45:25 +10:00

17 lines
366 B
CMake

set(sources
croutine.c
event_groups.c
list.c
queue.c
tasks.c
timers.c
CMSIS_RTOS/cmsis_os.c
)
add_library(FreeRTOS ${sources})
#Reqired to be able to grab the freertos config header
target_link_libraries(FreeRTOS PUBLIC BSP BSPImplementation)
target_include_directories(FreeRTOS PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_RTOS)