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