mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 01:22:25 +00:00
When building a native application, we use the host provided libc, so do not build minimal libc or newlib. Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
7 lines
186 B
CMake
7 lines
186 B
CMake
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)
|