zephyr/kernel/sys/CMakeLists.txt
Anas Nashif 243012c33c kernel: move thread_entry from lib/os to kernel
Not really library code, this a core component that is part of the core
os/kernel.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2026-04-14 22:31:16 -04:00

10 lines
176 B
CMake

# SPDX-License-Identifier: Apache-2.0
# Copyright (c) Zephyr Project Contributors
if(NOT CONFIG_USERSPACE)
zephyr_sources(sem.c)
endif()
zephyr_sources(
thread_entry.c
)