1# Copyright (c) 2021 Nordic Semiconductor 2# 3# SPDX-License-Identifier: Apache-2.0 4# 5 6zephyr_include_directories_ifdef( 7 CONFIG_GETOPT 8 . 9) 10 11zephyr_sources_ifdef( 12 CONFIG_GETOPT 13 getopt.c 14 getopt_common.c 15) 16 17zephyr_sources_ifdef( 18 CONFIG_GETOPT_LONG 19 getopt_long.c 20) 21