reactos/drivers/filesystems/ntfs/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

28 lines
426 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 ${SOURCE})
set_module_type(ntfs kernelmodedriver)
add_importlibs(ntfs ntoskrnl hal)
add_pch(ntfs ntfs.h)
add_cd_file(TARGET ntfs DESTINATION reactos/system32/drivers NO_CAB FOR all)