1 2list(APPEND SOURCE 3 descriptor.c 4 disk.c 5 fdo.c 6 misc.c 7 pdo.c 8 queue.c 9 error.c 10 scsi.c 11 usbstor.c) 12 13list(APPEND PCH_SKIP_SOURCE 14 guid.c) 15 16add_library(usbstor MODULE 17 ${SOURCE} 18 ${PCH_SKIP_SOURCE} 19 usbstor.rc) 20 21set_module_type(usbstor kernelmodedriver) 22add_importlibs(usbstor ntoskrnl hal usbd) 23add_pch(usbstor usbstor.h "${PCH_SKIP_SOURCE}") 24add_cd_file(TARGET usbstor DESTINATION reactos/system32/drivers NO_CAB FOR all) 25add_driver_inf(usbstor usbstor.inf) 26