mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 23:45:05 +00:00
Since we already have similarly licensed 3-clause BSD files in the tree, and in particular in our minimal libc, move the fnmatch functionality from ext/ to lib/. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
13 lines
420 B
CMake
13 lines
420 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_ifdef(CONFIG_FNMATCH fnmatch)
|
|
add_subdirectory(gui)
|
|
add_subdirectory(os)
|
|
add_subdirectory_ifdef(CONFIG_UPDATEHUB updatehub)
|