1# Copyright (c) 2024 Meta
2# SPDX-License-Identifier: Apache-2.0
3
4zephyr_library()
5# For setenv() and unsetenv()
6zephyr_library_compile_options(-U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L)
7# For getenv_r() visibility
8zephyr_library_compile_definitions(_BSD_SOURCE)
9
10zephyr_library_sources_ifdef(CONFIG_POSIX_SHELL posix_shell.c)
11zephyr_library_sources_ifdef(CONFIG_POSIX_UNAME_SHELL uname.c)
12zephyr_library_sources_ifdef(CONFIG_POSIX_ENV_SHELL env.c)
13