[STORAGE] Storage driver cleanup part 4

Move the floppy driver into the floppy/floppy directory.
This commit is contained in:
Eric Kohl 2019-11-30 13:13:59 +01:00
parent 9393c6a48b
commit 2a2040a9fe
16 changed files with 17 additions and 16 deletions

View file

@ -1,16 +1 @@
list(APPEND SOURCE
csqrtns.c
floppy.c
hardware.c
ioctl.c
readwrite.c
precomp.h)
add_library(floppy MODULE ${SOURCE} floppy.rc)
target_link_libraries(floppy csq)
add_pch(floppy precomp.h SOURCE)
set_module_type(floppy kernelmodedriver)
add_importlibs(floppy hal ntoskrnl)
add_cd_file(TARGET floppy DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_registry_inf(floppy_reg.inf)
add_subdirectory(floppy)

View file

@ -0,0 +1,16 @@
list(APPEND SOURCE
csqrtns.c
floppy.c
hardware.c
ioctl.c
readwrite.c
precomp.h)
add_library(floppy MODULE ${SOURCE} floppy.rc)
target_link_libraries(floppy csq)
add_pch(floppy precomp.h SOURCE)
set_module_type(floppy kernelmodedriver)
add_importlibs(floppy hal ntoskrnl)
add_cd_file(TARGET floppy DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_registry_inf(floppy_reg.inf)