mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
27 lines
504 B
CMake
27 lines
504 B
CMake
|
|
list(APPEND SOURCE
|
|
attrib.c
|
|
blockdev.c
|
|
cleanup.c
|
|
close.c
|
|
create.c
|
|
devctl.c
|
|
dirctl.c
|
|
dispatch.c
|
|
fastio.c
|
|
fcb.c
|
|
finfo.c
|
|
fsctl.c
|
|
mft.c
|
|
misc.c
|
|
ntfs.c
|
|
rw.c
|
|
volinfo.c
|
|
ntfs.h)
|
|
|
|
add_library(ntfs SHARED ${SOURCE} ntfs.rc)
|
|
set_module_type(ntfs kernelmodedriver)
|
|
target_link_libraries(ntfs ${PSEH_LIB})
|
|
add_importlibs(ntfs ntoskrnl hal)
|
|
add_pch(ntfs ntfs.h SOURCE)
|
|
add_cd_file(TARGET ntfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
|