mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
9d15fb9279
[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
14 lines
556 B
CMake
14 lines
556 B
CMake
|
|
include_directories(../../include)
|
|
|
|
list(APPEND FLTMGR_TEST_DRV_SOURCE
|
|
../../kmtest_drv/kmtest_fsminifilter.c
|
|
fltmgr_create.c)
|
|
|
|
add_library(fltmgr_create SHARED ${FLTMGR_TEST_DRV_SOURCE})
|
|
set_module_type(fltmgr_create kernelmodedriver)
|
|
target_link_libraries(fltmgr_create kmtest_printf ${PSEH_LIB})
|
|
add_importlibs(fltmgr_create fltmgr ntoskrnl hal)
|
|
add_target_compile_definitions(fltmgr_create KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1)
|
|
#add_pch(example_drv ../include/kmt_test.h)
|
|
add_rostests_file(TARGET fltmgr_create)
|