mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
16 lines
339 B
CMake
16 lines
339 B
CMake
|
|
list(APPEND SOURCE
|
|
roothub.c
|
|
usbohci.c
|
|
usbohci.h)
|
|
|
|
add_library(usbohci MODULE
|
|
${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)
|