reactos/drivers/filters/fltmgr/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

32 lines
712 B
CMake

include_directories(
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers/fltmgr
includes)
spec2def(fltmgr.sys fltmgr.spec ADD_IMPORTLIB)
list(APPEND SOURCE
Context.c
Dispatch.c
Filter.c
Interface.c
Lib.c
Messaging.c
Misc.c
Object.c
Registry.c
Volume.c
fltmgr.h)
add_library(fltmgr MODULE
${SOURCE}
fltmgr.rc
${CMAKE_CURRENT_BINARY_DIR}/fltmgr.def)
set_module_type(fltmgr kernelmodedriver)
target_link_libraries(fltmgr ${PSEH_LIB})
add_importlibs(fltmgr ntoskrnl hal)
add_target_compile_definitions(fltmgr NTDDI_VERSION=NTDDI_WS03SP1)
add_pch(fltmgr fltmgr.h SOURCE)
add_cd_file(TARGET fltmgr DESTINATION reactos/system32/drivers NO_CAB FOR all)