reactos/drivers/filesystems/ext2/CMakeLists.txt
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

31 lines
649 B
CMake

include_directories(inc)
list(APPEND SOURCE
src/volinfo.c
src/create.c
src/write.c
src/metadata.c
src/fastio.c
src/dircntrl.c
src/DiskIO.c
src/fsctrl.c
src/devcntrl.c
src/flush.c
src/ext2init.c
src/io.c
src/close.c
src/fileinfo.c
src/read.c
src/cleanup.c
src/misc.c
src/shutdown.c)
add_library(ext2fs SHARED ${SOURCE})
allow_warnings(ext2fs)
target_link_libraries(ext2fs ${PSEH_LIB})
add_pch(ext2fs inc/ext2fsd.h)
set_module_type(ext2fs kernelmodedriver)
add_importlibs(ext2fs ntoskrnl hal)
add_cd_file(TARGET ext2fs DESTINATION reactos/system32/drivers NO_CAB FOR all)