mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
48 lines
1.1 KiB
CMake
48 lines
1.1 KiB
CMake
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers
|
|
inc)
|
|
|
|
list(APPEND SOURCE
|
|
src/block.c
|
|
src/cleanup.c
|
|
src/close.c
|
|
src/cmcb.c
|
|
src/create.c
|
|
src/debug.c
|
|
src/devctl.c
|
|
src/dirctl.c
|
|
src/dispatch.c
|
|
src/except.c
|
|
src/fastio.c
|
|
src/ffs.c
|
|
src/fileinfo.c
|
|
src/flush.c
|
|
src/fsctl.c
|
|
src/init.c
|
|
src/lock.c
|
|
src/memory.c
|
|
src/misc.c
|
|
src/pnp.c
|
|
src/read.c
|
|
src/shutdown.c
|
|
src/volinfo.c
|
|
src/write.c
|
|
inc/ffsdrv.h)
|
|
|
|
add_library(ffs SHARED ${SOURCE} src/ffsdrv.rc)
|
|
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(ffs "-Wno-pointer-sign -Wno-unused-function")
|
|
if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
add_target_compile_flags(ffs "-Wno-unused-but-set-variable -Wno-unused-variable -Wno-missing-braces")
|
|
endif()
|
|
#else()
|
|
# replace_compile_flags("/we\"4189\"" " ")
|
|
endif()
|
|
|
|
add_definitions(-D__KERNEL__)
|
|
set_module_type(ffs kernelmodedriver)
|
|
target_link_libraries(ffs memcmp ${PSEH_LIB})
|
|
add_importlibs(ffs ntoskrnl hal)
|
|
add_pch(ffs inc/ffsdrv.h SOURCE)
|
|
add_cd_file(TARGET ffs DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
|