mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 00:21:55 +00:00
We expect to have more libraries with incopatible license. There must be a common place for such software. It seems that lib/util is good place for that. Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
13 lines
382 B
CMake
13 lines
382 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(NOT CONFIG_EXTERNAL_LIBC)
|
|
add_subdirectory(libc)
|
|
add_subdirectory(posix)
|
|
endif()
|
|
add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V1 cmsis_rtos_v1)
|
|
add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V2 cmsis_rtos_v2)
|
|
add_subdirectory(gui)
|
|
add_subdirectory(os)
|
|
add_subdirectory(util)
|
|
add_subdirectory_ifdef(CONFIG_OPENAMP open-amp)
|