[DRIVERS]
[reactos.git] / reactos / drivers / filesystems / cdfs / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/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 fcb.c
13 finfo.c
14 fsctl.c
15 misc.c
16 rw.c
17 volinfo.c
18 cdfs.h)
19
20 add_library(cdfs SHARED ${SOURCE} cdfs.rc)
21
22 set_module_type(cdfs kernelmodedriver)
23 add_importlibs(cdfs ntoskrnl hal)
24
25 add_pch(cdfs cdfs.h SOURCE)
26
27 add_cd_file(TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all)