Start to implement fltmgr tests [WIP] (#52)
[reactos.git] / modules / rostests / kmtests / fltmgr / fltmgr_create / CMakeLists.txt
1
2 include_directories(../../include)
3
4 list(APPEND FLTMGR_TEST_DRV_SOURCE
5 ../../kmtest_drv/kmtest_fsminifilter.c
6 fltmgr_create.c)
7
8 add_library(fltmgr_create SHARED ${FLTMGR_TEST_DRV_SOURCE})
9 set_module_type(fltmgr_create kernelmodedriver)
10 target_link_libraries(fltmgr_create kmtest_printf ${PSEH_LIB})
11 add_importlibs(fltmgr_create fltmgr ntoskrnl hal)
12 add_target_compile_definitions(fltmgr_create KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1)
13 #add_pch(example_drv ../include/kmt_test.h)
14 add_rostests_file(TARGET fltmgr_create)