reactos/drivers/usb/usbstor/CMakeLists.txt
Victor Perevertkin a9b97aeded
[USBSTOR] General refactoring.
Remove unused structures and unused fields in device extensions.
Replaced magic numbers with constants
2020-06-12 16:55:27 +03:00

26 lines
500 B
CMake

list(APPEND SOURCE
descriptor.c
disk.c
fdo.c
misc.c
pdo.c
queue.c
error.c
scsi.c
usbstor.c)
list(APPEND PCH_SKIP_SOURCE
guid.c)
add_library(usbstor MODULE
${SOURCE}
${PCH_SKIP_SOURCE}
usbstor.rc)
set_module_type(usbstor kernelmodedriver)
add_importlibs(usbstor ntoskrnl hal usbd)
add_pch(usbstor usbstor.h "${PCH_SKIP_SOURCE}")
add_cd_file(TARGET usbstor DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_driver_inf(usbstor usbstor.inf)