mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 17:05:54 +00:00
It so happened that previously CONFIG_PTHREAD_IPC served this role. But pthreads and IPC is only parts of POSIX, orthogonal to other services. Move CONFIG_POSIX_FS, etc. out from CONFIG_PTHREAD_IPC. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
13 lines
428 B
CMake
13 lines
428 B
CMake
zephyr_sources(thread_entry.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(rbtree)
|