1
2list(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
26add_library(fastfat SHARED ${SOURCE} vfatfs.rc)
27set_module_type(fastfat kernelmodedriver)
28target_link_libraries(fastfat ${PSEH_LIB})
29add_importlibs(fastfat ntoskrnl hal)
30add_pch(fastfat vfat.h SOURCE)
31add_cd_file(TARGET fastfat DESTINATION reactos/system32/drivers NO_CAB FOR all)
32