mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
72864bcd6c
- Add ksuser, npfs, ntfs, ks, parallel, serenum, serial, pciide, pciidex, usbdriver, usbd, framebuf, framebuf_new and portcls to build. By Alexey Komarov. svn path=/branches/cmake-bringup/; revision=48951
26 lines
601 B
CMake
26 lines
601 B
CMake
|
|
list(APPEND SOURCE
|
|
attrib.c
|
|
blockdev.c
|
|
close.c
|
|
create.c
|
|
dirctl.c
|
|
dispatch.c
|
|
fastio.c
|
|
fcb.c
|
|
finfo.c
|
|
fsctl.c
|
|
mft.c
|
|
misc.c
|
|
ntfs.c
|
|
rw.c
|
|
volinfo.c
|
|
ntfs.rc)
|
|
|
|
add_library(ntfs SHARED ${CMAKE_CURRENT_BINARY_DIR}/ntfs_ntfs.h.gch ${SOURCE})
|
|
|
|
set_target_properties(ntfs PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols -Wl,--subsystem,native" SUFFIX ".sys")
|
|
|
|
add_importlibs(ntfs ntoskrnl hal)
|
|
add_pch(ntfs ${CMAKE_CURRENT_SOURCE_DIR}/ntfs.h ${SOURCE})
|
|
add_dependencies(ntfs psdk bugcodes)
|