mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
44 lines
798 B
CMake
44 lines
798 B
CMake
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)
|
|
|
|
add_library(fastfat MODULE ${SOURCE} fastfat.rc)
|
|
set_module_type(fastfat kernelmodedriver)
|
|
target_link_libraries(fastfat ${PSEH_LIB} memcmp)
|
|
add_importlibs(fastfat ntoskrnl hal)
|
|
add_pch(fastfat fatprocs.h SOURCE)
|
|
add_cd_file(TARGET fastfat DESTINATION reactos/system32/drivers NO_CAB FOR all)
|