reactos/drivers/filesystems/fs_rec/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
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.
2019-04-06 17:43:38 +02:00

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)