2019-04-06 15:08:09 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-08-11 22:40:05 +02:00
|
|
|
# FIXME: SHADOW_VARS: Remove this once we have enabled -Wshadow globally.
|
|
|
|
add_compile_options($<TARGET_PROPERTY:compiler,warning_shadow_variables>)
|
|
|
|
|
2023-08-16 15:04:12 +02:00
|
|
|
add_subdirectory(crc)
|
2023-12-28 14:25:54 +01:00
|
|
|
if(NOT CONFIG_EXTERNAL_LIBC)
|
2017-12-14 19:44:49 +01:00
|
|
|
add_subdirectory(libc)
|
2023-12-28 14:29:27 +01:00
|
|
|
endif()
|
|
|
|
if(NOT CONFIG_NATIVE_LIBC)
|
2023-12-28 07:24:13 +01:00
|
|
|
add_subdirectory(posix)
|
2023-12-28 14:25:54 +01:00
|
|
|
endif()
|
2022-12-08 22:16:44 +01:00
|
|
|
add_subdirectory_ifdef(CONFIG_CPP cpp)
|
2023-02-24 22:09:42 +01:00
|
|
|
add_subdirectory(hash)
|
2023-11-18 00:43:30 +01:00
|
|
|
add_subdirectory(heap)
|
2023-11-18 10:24:45 +01:00
|
|
|
add_subdirectory(mem_blocks)
|
2019-01-19 12:57:38 +01:00
|
|
|
add_subdirectory(os)
|
2023-12-20 14:07:43 +01:00
|
|
|
add_subdirectory(utils)
|
2021-08-29 06:44:17 +02:00
|
|
|
add_subdirectory_ifdef(CONFIG_SMF smf)
|
2019-09-20 11:41:38 +02:00
|
|
|
add_subdirectory_ifdef(CONFIG_OPENAMP open-amp)
|
2023-03-30 09:16:11 +02:00
|
|
|
add_subdirectory_ifdef(CONFIG_ACPI acpi)
|