mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
17 lines
351 B
CMake
17 lines
351 B
CMake
|
|
list(APPEND SOURCE
|
|
debug.c
|
|
roothub.c
|
|
usbehci.c
|
|
usbehci.h)
|
|
|
|
add_library(usbehci MODULE
|
|
${SOURCE}
|
|
guid.c
|
|
usbehci.rc)
|
|
|
|
set_module_type(usbehci kernelmodedriver)
|
|
add_importlibs(usbehci usbport usbd hal ntoskrnl)
|
|
add_pch(usbehci usbehci.h SOURCE)
|
|
add_cd_file(TARGET usbehci DESTINATION reactos/system32/drivers NO_CAB FOR all)
|