* Sync up to trunk head (r64829).
[reactos.git] / drivers / filesystems / fastfat_new / CMakeLists.txt
1
2 include_directories(
3 .
4 ${REACTOS_SOURCE_DIR}/include/reactos/libs/fullfat)
5
6 list(APPEND SOURCE
7 cleanup.c
8 close.c
9 create.c
10 device.c
11 dir.c
12 ea.c
13 fastfat.c
14 fastio.c
15 fat.c
16 fcb.c
17 finfo.c
18 flush.c
19 fsctl.c
20 fullfat.c
21 lock.c
22 rw.c
23 shutdown.c
24 volume.c
25 fastfat.rc)
26
27 add_library(fastfat_new SHARED ${SOURCE})
28 set_module_type(fastfat_new kernelmodedriver)
29 target_link_libraries(fastfat_new ${PSEH_LIB} fullfat)
30 add_importlibs(fastfat_new ntoskrnl hal)
31 add_pch(fastfat_new fastfat.h)