1# Copyright (c) 2023 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4set(SAMPLE_USBD_DIR ${ZEPHYR_BASE}/samples/subsys/usb/common)
5
6target_include_directories(app PRIVATE ${SAMPLE_USBD_DIR})
7target_sources_ifdef(CONFIG_USB_DEVICE_STACK_NEXT app PRIVATE
8	${SAMPLE_USBD_DIR}/sample_usbd_init.c
9)
10