mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
35 lines
552 B
CMake
35 lines
552 B
CMake
|
|
add_definitions(
|
|
-DINCLUDE_EHCI
|
|
-D_MULTI_UHCI
|
|
-D_MULTI_EHCI
|
|
-D_X86)
|
|
|
|
list(APPEND SOURCE
|
|
ehci.c
|
|
ohci.c
|
|
uhci.c
|
|
roothub.c
|
|
hub.c
|
|
td.c
|
|
usb.c
|
|
umss.c
|
|
bulkonly.c
|
|
cbi.c
|
|
devmgr.c
|
|
dmgrdisp.c
|
|
compdrv.c
|
|
etd.c
|
|
gendrv.c
|
|
mouse.c
|
|
keyboard.c
|
|
usbdriver.rc)
|
|
|
|
add_library(usbdrv SHARED ${SOURCE})
|
|
|
|
set_module_type(usbdrv kernelmodedriver)
|
|
add_importlibs(usbdrv ntoskrnl hal)
|
|
|
|
add_pch(usbdrv usbdriver.h)
|
|
|
|
add_cd_file(TARGET usbdrv DESTINATION reactos/system32/drivers NO_CAB FOR all)
|