2011-04-09 16:01:04 +00:00
|
|
|
|
|
|
|
add_definitions(-DDEBUG_MODE)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/ntoskrnl/include)
|
|
|
|
|
2014-02-09 17:28:01 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
descriptor.c
|
|
|
|
disk.c
|
|
|
|
fdo.c
|
|
|
|
misc.c
|
|
|
|
pdo.c
|
|
|
|
queue.c
|
|
|
|
error.c
|
|
|
|
scsi.c
|
|
|
|
usbstor.c
|
|
|
|
usbstor.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(usbstor MODULE
|
2014-02-09 17:28:01 +00:00
|
|
|
${SOURCE}
|
|
|
|
guid.c
|
|
|
|
usbstor.rc)
|
2011-04-09 16:01:04 +00:00
|
|
|
|
|
|
|
set_module_type(usbstor kernelmodedriver)
|
2011-05-03 00:15:23 +00:00
|
|
|
add_importlibs(usbstor ntoskrnl hal usbd)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(usbstor usbstor.h SOURCE)
|
2012-01-20 22:04:57 +00:00
|
|
|
add_cd_file(TARGET usbstor DESTINATION reactos/system32/drivers NO_CAB FOR all)
|