[CDFS_NEW] _SEH2_FINALLY implement SEH support for real instead of its current stub.
[reactos.git] / drivers / filesystems / cdfs_new / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
3
4 list(APPEND SOURCE
5 allocsup.c
6 cachesup.c
7 cddata.c
8 cdinit.c
9 cleanup.c
10 close.c
11 create.c
12 devctrl.c
13 deviosup.c
14 dirctrl.c
15 dirsup.c
16 fileinfo.c
17 filobsup.c
18 fsctrl.c
19 fspdisp.c
20 lockctrl.c
21 namesup.c
22 pathsup.c
23 pnp.c
24 prefxsup.c
25 read.c
26 resrcsup.c
27 strucsup.c
28 verfysup.c
29 volinfo.c
30 workque.c)
31
32 add_library(cdfs SHARED ${SOURCE} cdfs.rc)
33 set_module_type(cdfs kernelmodedriver)
34 target_link_libraries(cdfs ${PSEH_LIB} memcmp)
35 add_importlibs(cdfs ntoskrnl hal)
36 add_cd_file(TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
37 add_registry_inf(cdfs_reg.inf)