2010-09-24 09:46:34 +00:00
|
|
|
|
2010-11-04 21:06:20 +00:00
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${REACTOS_SOURCE_DIR}/include/reactos/libs/fullfat)
|
2010-09-24 09:46:34 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
cleanup.c
|
|
|
|
close.c
|
|
|
|
create.c
|
|
|
|
device.c
|
|
|
|
dir.c
|
|
|
|
ea.c
|
|
|
|
fastfat.c
|
|
|
|
fastio.c
|
|
|
|
fat.c
|
|
|
|
fcb.c
|
|
|
|
finfo.c
|
|
|
|
flush.c
|
|
|
|
fsctl.c
|
|
|
|
fullfat.c
|
|
|
|
lock.c
|
|
|
|
rw.c
|
|
|
|
shutdown.c
|
|
|
|
volume.c
|
|
|
|
fastfat.rc)
|
|
|
|
|
|
|
|
add_library(fastfat_new SHARED ${CMAKE_CURRENT_BINARY_DIR}/fastfat_new_fastfat.h.gch ${SOURCE})
|
|
|
|
|
2010-11-04 21:06:20 +00:00
|
|
|
set_module_type(fastfat_new kernelmodedriver)
|
2010-09-24 09:46:34 +00:00
|
|
|
|
|
|
|
target_link_libraries(fastfat_new
|
2010-11-01 17:24:32 +00:00
|
|
|
${PSEH_LIB}
|
2010-09-24 09:46:34 +00:00
|
|
|
fullfat)
|
|
|
|
|
|
|
|
add_importlibs(fastfat_new ntoskrnl hal)
|
|
|
|
|
|
|
|
add_pch(fastfat_new ${CMAKE_CURRENT_SOURCE_DIR}/fastfat.h ${SOURCE})
|