zephyr/drivers/usb/uvb/CMakeLists.txt
Johann Fischer deb637eb8a drivers: usb: add support for virtual USB bus
Add support for virtual USB bus (UVB) intended for use
by virtual UDC and UHC controllers. UVB is not an emulation
of the USB bus or protocol but a simplified service to connect
a virtual host controller to one or more virtual device
controllers.

Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
2022-12-16 13:21:12 +01:00

14 lines
203 B
CMake

#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: Apache-2.0
#
if(CONFIG_UVB)
zephyr_library()
zephyr_library_sources(uvb.c)
zephyr_linker_sources(DATA_SECTIONS uvb.ld)
endif()