2024-01-16 14:33:12 +08:00
|
|
|
# Copyright (c) 2024 Meta
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2024-02-04 07:49:45 +08:00
|
|
|
zephyr_library()
|
|
|
|
# For setenv() and unsetenv()
|
|
|
|
zephyr_library_compile_options(-U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L)
|
|
|
|
# For getenv_r() visibility
|
|
|
|
zephyr_library_compile_definitions(_BSD_SOURCE)
|
|
|
|
|
2024-01-18 00:36:58 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_POSIX_SHELL posix_shell.c)
|
2024-01-16 14:33:12 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_POSIX_UNAME_SHELL uname.c)
|
2023-12-22 00:35:37 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_POSIX_ENV_SHELL env.c)
|