File tree Expand file tree Collapse file tree 2 files changed +34
-33
lines changed
Expand file tree Collapse file tree 2 files changed +34
-33
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ add_library (mbed-usb INTERFACE )
5+
6+ target_include_directories (mbed-usb
7+ INTERFACE
8+ include
9+ include /usb
10+ )
11+
12+ target_sources (mbed-usb
13+ INTERFACE
14+ source /AsyncOp.cpp
15+ source /ByteBuffer.cpp
16+ source /EndpointResolver.cpp
17+ source /LinkedListBase.cpp
18+ source /OperationListBase.cpp
19+ source /PolledQueue.cpp
20+ source /TaskBase.cpp
21+ source /USBAudio.cpp
22+ source /USBCDC.cpp
23+ source /USBCDC_ECM.cpp
24+ source /USBDevice.cpp
25+ source /USBHID.cpp
26+ source /USBKeyboard.cpp
27+ source /USBMIDI.cpp
28+ source /USBMSD.cpp
29+ source /USBMouse.cpp
30+ source /USBMouseKeyboard.cpp
31+ source /USBSerial.cpp
32+ )
33+
34+ target_link_libraries (mbed-usb INTERFACE mbed-storage)
You can’t perform that action at this time.
0 commit comments