reactos/drivers/filesystems/fs_rec/CMakeLists.txt
Vincent Franchomme 1f2d67a841
[FS_REC] Rename Ext2 recognizer to Ext recognizer (#7497)
Rename the Ext2 recognizer to a more generic Ext to be more future-proof with a possible upcoming ext4 support.
Also, it already makes no sense to use the name ext2 as it already recognizes all the FS of the "Ext family".

In addition, add the Ext Recognizer for CDs.
2024-11-18 21:27:16 +01:00

19 lines
391 B
CMake

list(APPEND SOURCE
blockdev.c
btrfs.c
cdfs.c
ext.c
fat.c
fatx.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)