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