reactos/drivers/usb/usbehci/CMakeLists.txt
2020-01-06 21:16:08 +02:00

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)