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