reactos/drivers/usb/usbohci_new/CMakeLists.txt
Amine Khaldi f2f2dd0552 [USBOHCI_NEW] Bring-in the USB OHCI miniport driver created by Vadim Galyant. (#244)
[USBOHCI_NEW] Add the new usbport-based OHCI driver.
2018-01-12 21:09:58 +01:00

16 lines
339 B
CMake

list(APPEND SOURCE
roothub.c
usbohci.c
usbohci.h)
add_library(usbohci SHARED
${SOURCE}
guid.c
usbohci.rc)
set_module_type(usbohci kernelmodedriver)
add_importlibs(usbohci usbport usbd hal ntoskrnl)
add_pch(usbohci usbohci.h SOURCE)
add_cd_file(TARGET usbohci DESTINATION reactos/system32/drivers NO_CAB FOR all)