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.
19 lines
381 B
CMake
19 lines
381 B
CMake
list(APPEND SOURCE
|
|
blockdev.c
|
|
btrfs.c
|
|
cdfs.c
|
|
ext2.c
|
|
fat.c
|
|
ffs.c
|
|
fs_rec.c
|
|
ntfs.c
|
|
reiserfs.c
|
|
udfs.c
|
|
fs_rec.h)
|
|
|
|
add_library(fs_rec MODULE ${SOURCE} fs_rec.rc)
|
|
set_module_type(fs_rec kernelmodedriver)
|
|
add_importlibs(fs_rec ntoskrnl hal)
|
|
add_pch(fs_rec fs_rec.h SOURCE)
|
|
add_cd_file(TARGET fs_rec DESTINATION reactos/system32/drivers FOR all)
|