Files
obsw/bsp_z7/freeRTOS/CMakeLists.txt
2024-10-07 16:55:20 +02:00

6 lines
323 B
CMake

target_sources(bsp PRIVATE FreeRTOS_asm_vectors.S)
# Needs to be INTERFACE'd so it is build as part of the main application and can be found by the linker
# Otherwise, we have a circular dependency between FreeRTOS and bsp which needs single file libraries to
# resolve
target_sources(bsp INTERFACE FreeRTOS_tick_config.c)