mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
1f2d67a841
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.
19 lines
391 B
CMake
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)
|