xref: /reactos/drivers/usb/usbuhci/CMakeLists.txt (revision 611d925d)
1
2list(APPEND SOURCE
3    roothub.c
4    usbuhci.c
5    usbuhci.h)
6
7add_library(usbuhci MODULE
8    ${SOURCE}
9    guid.c
10    usbuhci.rc)
11
12set_module_type(usbuhci kernelmodedriver)
13add_importlibs(usbuhci usbport usbd hal ntoskrnl)
14add_pch(usbuhci usbuhci.h SOURCE)
15add_cd_file(TARGET usbuhci DESTINATION reactos/system32/drivers NO_CAB FOR all)
16