mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
27 lines
483 B
CMake
27 lines
483 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers)
|
|
|
|
list(APPEND SOURCE
|
|
cdfs.c
|
|
cleanup.c
|
|
close.c
|
|
common.c
|
|
create.c
|
|
devctrl.c
|
|
dirctl.c
|
|
fcb.c
|
|
finfo.c
|
|
fsctl.c
|
|
misc.c
|
|
rw.c
|
|
volinfo.c
|
|
cdfs.h)
|
|
|
|
add_library(cdfs SHARED ${SOURCE} cdfs.rc)
|
|
|
|
set_module_type(cdfs kernelmodedriver)
|
|
add_importlibs(cdfs ntoskrnl hal)
|
|
|
|
add_pch(cdfs cdfs.h SOURCE)
|
|
|
|
add_cd_file(TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
|