You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
297 B
10 lines
297 B
|
|
add_library(CMSIS INTERFACE) |
|
|
|
target_include_directories(CMSIS INTERFACE ${PROJECT_SOURCE_DIR}/include/cmsis_rtos_v1) |
|
|
|
zephyr_library() |
|
zephyr_library_sources_ifdef(CONFIG_CMSIS_RTOS_V1 cmsis_thread.c) |
|
|
|
zephyr_library_link_libraries(CMSIS) |
|
target_link_libraries(CMSIS INTERFACE zephyr_interface)
|
|
|