2017-11-23 22:26:10 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
acchksup.c
|
|
|
|
allocsup.c
|
|
|
|
cachesup.c
|
|
|
|
cleanup.c
|
|
|
|
close.c
|
|
|
|
create.c
|
|
|
|
devctrl.c
|
|
|
|
deviosup.c
|
|
|
|
dirctrl.c
|
|
|
|
dirsup.c
|
|
|
|
dumpsup.c
|
|
|
|
ea.c
|
|
|
|
easup.c
|
|
|
|
fatdata.c
|
|
|
|
fatinit.c
|
|
|
|
fatprocssrc.c
|
|
|
|
fileinfo.c
|
|
|
|
filobsup.c
|
|
|
|
flush.c
|
|
|
|
fsctrl.c
|
|
|
|
fspdisp.c
|
|
|
|
lockctrl.c
|
|
|
|
namesup.c
|
|
|
|
pnp.c
|
|
|
|
read.c
|
|
|
|
resrcsup.c
|
|
|
|
shutdown.c
|
|
|
|
splaysup.c
|
|
|
|
strucsup.c
|
|
|
|
timesup.c
|
|
|
|
verfysup.c
|
|
|
|
volinfo.c
|
|
|
|
workque.c
|
|
|
|
write.c
|
|
|
|
fatprocs.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(fastfat MODULE ${SOURCE} fastfat.rc)
|
2017-11-23 22:26:10 +00:00
|
|
|
set_module_type(fastfat kernelmodedriver)
|
|
|
|
target_link_libraries(fastfat ${PSEH_LIB} memcmp)
|
2022-05-25 22:37:23 +00:00
|
|
|
if(GDB AND NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
2020-11-30 13:17:41 +00:00
|
|
|
target_compile_options(fastfat PRIVATE -O0)
|
|
|
|
endif()
|
2017-11-23 22:26:10 +00:00
|
|
|
add_importlibs(fastfat ntoskrnl hal)
|
|
|
|
add_pch(fastfat fatprocs.h SOURCE)
|
|
|
|
add_cd_file(TARGET fastfat DESTINATION reactos/system32/drivers NO_CAB FOR all)
|