reactos/drivers/filters/fltmgr/CMakeLists.txt
Ged Murphy 9d15fb9279 Start to implement fltmgr tests [WIP] (#52)
[FLTMGR]
- Partially implement registering contexts
- Add a misc file which contains stubs of the APIs needed in the test suite
- Export some APIs needed by the test suite

[KMTESTS]
- Create a File System Mini-filter wrapper to host drivers for the filter manager tests
- Add a test file which will be used for testing that mini-filters load correctly
- Add a test file which will be used to write tests for IRP_MJ_CREATE requests
2017-10-12 15:32:30 +01:00

29 lines
683 B
CMake

list(APPEND SOURCE
Context.c
Dispatch.c
Filter.c
Interface.c
Lib.c
Messaging.c
Misc.c
Object.c
${CMAKE_CURRENT_BINARY_DIR}/fltmgr.def
fltmgr.h)
include_directories(
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers/fltmgr
includes)
spec2def(fltmgr.sys fltmgr.spec ADD_IMPORTLIB)
add_library(fltmgr SHARED
${SOURCE}
fltmgr.rc)
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)