reactos/drivers/storage/floppy/CMakeLists.txt
Sylvain Petreolle da55a789c3 [CMAKE]
Add minicd target.
This partial bootcd target produces a minicd iso,
able to start the install process to the cabinet installation page.

svn path=/branches/cmake-bringup/; revision=49072
2010-10-09 13:54:36 +00:00

20 lines
449 B
CMake

add_library(floppy SHARED
csqrtns.c
floppy.c
hardware.c
ioctl.c
readwrite.c
floppy.rc)
set_target_properties(floppy PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols -Wl,--subsystem,native" SUFFIX ".sys")
target_link_libraries(floppy
csq
-lntoskrnl
-lhal)
add_dependencies(floppy psdk bugcodes buildno_header)
add_minicd_target(floppy reactos floppy.sys)