[NTFS]
[reactos.git] / drivers / filesystems / fastfat / CMakeLists.txt
1
2 list(APPEND SOURCE
3 blockdev.c
4 cleanup.c
5 close.c
6 create.c
7 dir.c
8 direntry.c
9 dirwr.c
10 ea.c
11 fat.c
12 fastio.c
13 fcb.c
14 finfo.c
15 flush.c
16 fsctl.c
17 iface.c
18 misc.c
19 pnp.c
20 rw.c
21 shutdown.c
22 string.c
23 volume.c
24 vfat.h)
25
26 add_library(fastfat SHARED ${SOURCE} vfatfs.rc)
27 set_module_type(fastfat kernelmodedriver)
28 target_link_libraries(fastfat ${PSEH_LIB})
29 add_importlibs(fastfat ntoskrnl hal)
30 add_pch(fastfat vfat.h SOURCE)
31 add_cd_file(TARGET fastfat DESTINATION reactos/system32/drivers NO_CAB FOR all)