2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
cdfs.c
|
|
|
|
cleanup.c
|
|
|
|
close.c
|
|
|
|
common.c
|
|
|
|
create.c
|
|
|
|
devctrl.c
|
|
|
|
dirctl.c
|
2015-06-01 13:13:18 +00:00
|
|
|
dispatch.c
|
|
|
|
fastio.c
|
2011-05-16 13:12:07 +00:00
|
|
|
fcb.c
|
|
|
|
finfo.c
|
|
|
|
fsctl.c
|
|
|
|
misc.c
|
|
|
|
rw.c
|
|
|
|
volinfo.c
|
2014-02-09 17:28:01 +00:00
|
|
|
cdfs.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-09 17:28:01 +00:00
|
|
|
add_library(cdfs SHARED ${SOURCE} cdfs.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(cdfs kernelmodedriver)
|
2015-02-27 21:30:09 +00:00
|
|
|
target_link_libraries(cdfs ${PSEH_LIB})
|
2011-05-16 13:12:07 +00:00
|
|
|
add_importlibs(cdfs ntoskrnl hal)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(cdfs cdfs.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET cdfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
2015-03-29 11:38:05 +00:00
|
|
|
add_registry_inf(cdfs_reg.inf)
|