mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 21:48:10 +00:00
e2277b1f02
Do not enable it yet, as it doesn't work in ROS for the moment :-(. Its place in tree is not optimal (it should be with disk/class/etc.), but I prefer keeping it close to actual driver for now. All the work has been done so that it compiles and links with ReactOS SDK though.
9 lines
290 B
CMake
9 lines
290 B
CMake
list(APPEND SOURCE
|
|
guid.c
|
|
floppy.c)
|
|
|
|
add_library(floppy SHARED ${SOURCE} floppy.rc)
|
|
set_module_type(floppy kernelmodedriver)
|
|
add_importlibs(floppy classpnp hal ntoskrnl)
|
|
add_cd_file(TARGET floppy DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
add_registry_inf(floppy_reg.inf)
|