[CMAKE]
[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 vfatfs.rc)
25
26 add_library(fastfat SHARED ${CMAKE_CURRENT_BINARY_DIR}/fastfat_vfat.h.gch ${SOURCE})
27
28 set_module_type(fastfat kernelmodedriver)
29 add_importlibs(fastfat ntoskrnl hal)
30
31 add_pch(fastfat ${CMAKE_CURRENT_SOURCE_DIR}/vfat.h ${SOURCE})
32
33 add_cd_file(TARGET fastfat DESTINATION reactos/system32/drivers NO_CAB FOR all)