mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 22:45:51 +00:00
These APIs allow defining, creating and controlling of thread related functionalities. Signed-off-by: Rajavardhan Gundi <rajavardhan.gundi@intel.com>
15 lines
529 B
CMake
15 lines
529 B
CMake
zephyr_sources(thread_entry.c work_q.c)
|
|
zephyr_sources(fdtable.c)
|
|
add_subdirectory(crc)
|
|
add_subdirectory_ifdef(CONFIG_JSON_LIBRARY json)
|
|
if(NOT CONFIG_NATIVE_APPLICATION)
|
|
add_subdirectory(libc)
|
|
endif()
|
|
add_subdirectory_if_kconfig(ring_buffer)
|
|
add_subdirectory_if_kconfig(base64)
|
|
add_subdirectory(mempool)
|
|
add_subdirectory_ifdef(CONFIG_POSIX_API posix)
|
|
add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V1 cmsis_rtos_v1)
|
|
add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V2 cmsis_rtos_v2)
|
|
add_subdirectory(rbtree)
|