mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
25c7e1a8d0
floppy drives in ReactOS and mount images on them. Only the cmd got imported. The GUI interface may come later on. Note that, as for vcdrom, the driver is left disabled and you need to explicitely start it through vfd command line interface. CORE-14090
11 lines
404 B
CMake
11 lines
404 B
CMake
|
|
add_message_headers(ANSI vfdmsg.mc)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/modules/rosapps/include/vfd)
|
|
add_executable(vfdcmd vfdcmd.c vfdcmd.rc)
|
|
set_module_type(vfdcmd win32cui)
|
|
add_importlibs(vfdcmd advapi32 vfd user32 msvcrt kernel32 ntdll)
|
|
add_dependencies(vfdcmd vfdmsg)
|
|
set_target_properties(vfdcmd PROPERTIES OUTPUT_NAME "vfd")
|
|
add_cd_file(TARGET vfdcmd DESTINATION reactos/system32 FOR all)
|