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