[NTFS]
[reactos.git] / drivers / filesystems / cdfs / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
3
4 list(APPEND SOURCE
5 cdfs.c
6 cleanup.c
7 close.c
8 common.c
9 create.c
10 devctrl.c
11 dirctl.c
12 dispatch.c
13 fastio.c
14 fcb.c
15 finfo.c
16 fsctl.c
17 misc.c
18 rw.c
19 volinfo.c
20 cdfs.h)
21
22 add_library(cdfs SHARED ${SOURCE} cdfs.rc)
23 set_module_type(cdfs kernelmodedriver)
24 target_link_libraries(cdfs ${PSEH_LIB})
25 add_importlibs(cdfs ntoskrnl hal)
26 add_pch(cdfs cdfs.h SOURCE)
27 add_cd_file(TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
28 add_registry_inf(cdfs_reg.inf)