[NTFS]
[reactos.git] / reactos / drivers / filesystems / ntfs / CMakeLists.txt
1
2 list(APPEND SOURCE
3 attrib.c
4 blockdev.c
5 cleanup.c
6 close.c
7 create.c
8 devctl.c
9 dirctl.c
10 dispatch.c
11 fastio.c
12 fcb.c
13 finfo.c
14 fsctl.c
15 mft.c
16 misc.c
17 ntfs.c
18 rw.c
19 volinfo.c
20 ntfs.h)
21
22 add_library(ntfs SHARED ${SOURCE} ntfs.rc)
23 set_module_type(ntfs kernelmodedriver)
24 target_link_libraries(ntfs ${PSEH_LIB})
25 add_importlibs(ntfs ntoskrnl hal)
26 add_pch(ntfs ntfs.h SOURCE)
27 add_cd_file(TARGET ntfs DESTINATION reactos/system32/drivers NO_CAB FOR all)