File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
drivers/filesystems/cdfs_new Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # include_directories(${REACTOS_SOURCE_DIR}/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
+ # fieldoff.c #useless
17
+ fileinfo.c
18
+ filobsup.c
19
+ fsctrl.c
20
+ fspdisp.c
21
+ lockctrl.c
22
+ namesup.c
23
+ pathsup.c
24
+ pnp.c
25
+ prefxsup.c
26
+ read.c
27
+ resrcsup.c
28
+ strucsup.c
29
+ verfysup.c
30
+ volinfo.c
31
+ workque.c
32
+ cdprocs.h )
33
+
34
+ add_library (cdfs SHARED ${SOURCE} cdfs.rc )
35
+ set_module_type (cdfs kernelmodedriver )
36
+ target_link_libraries (cdfs memcmp ${PSEH_LIB} )
37
+ add_importlibs (cdfs ntoskrnl hal )
38
+ add_pch (cdfs cdprocs.h SOURCE )
39
+ add_cd_file (TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all )
40
+ add_registry_inf (cdfs_reg.inf )
You can’t perform that action at this time.
0 commit comments