mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
12 lines
332 B
CMake
12 lines
332 B
CMake
|
|
||
|
list(APPEND SOURCE
|
||
|
guid.c
|
||
|
floppy.c)
|
||
|
|
||
|
add_library(sfloppy MODULE ${SOURCE} floppy.rc)
|
||
|
set_module_type(sfloppy kernelmodedriver)
|
||
|
add_importlibs(sfloppy classpnp hal ntoskrnl)
|
||
|
add_cd_file(TARGET sfloppy DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
||
|
add_driver_inf(sfloppy sfloppy.inf)
|
||
|
add_registry_inf(sfloppy_reg.inf)
|