reactos/drivers/filesystems/ntfs/CMakeLists.txt
Pierre Schweitzer 806cd16328
[SETUP] Remove FSDs which have broken dismount implementation.
This avoids issues when these partitions are formatted to FAT for setup.

For now, this commit doesn't change anything, but once IopParseDevice hack
gets removed, this will make a difference!

CORE-6305
2017-12-17 23:16:01 +01:00

29 lines
509 B
CMake

list(APPEND SOURCE
attrib.c
blockdev.c
btree.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 FOR all)