1 2include_directories(../../include) 3 4list(APPEND FLTMGR_TEST_DRV_SOURCE 5 ../../kmtest_drv/kmtest_fsminifilter.c 6 fltmgr_create.c) 7 8add_library(fltmgr_create MODULE ${FLTMGR_TEST_DRV_SOURCE}) 9set_module_type(fltmgr_create kernelmodedriver) 10target_link_libraries(fltmgr_create kmtest_printf ${PSEH_LIB}) 11add_importlibs(fltmgr_create fltmgr ntoskrnl hal) 12target_compile_definitions(fltmgr_create PRIVATE KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1) 13#add_pch(fltmgr_create ../include/kmt_test.h) 14add_rostests_file(TARGET fltmgr_create) 15