2015-10-11 17:06:14 +00:00
|
|
|
|
|
|
|
include_directories(../include)
|
|
|
|
|
|
|
|
#
|
|
|
|
# PoIrp
|
|
|
|
#
|
|
|
|
list(APPEND POIRP_DRV_SOURCE
|
|
|
|
../kmtest_drv/kmtest_standalone.c
|
|
|
|
PoIrp_drv.c)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(poirp_drv MODULE ${POIRP_DRV_SOURCE})
|
2015-10-11 17:06:14 +00:00
|
|
|
set_module_type(poirp_drv kernelmodedriver)
|
|
|
|
target_link_libraries(poirp_drv kmtest_printf ${PSEH_LIB})
|
|
|
|
add_importlibs(poirp_drv ntoskrnl hal)
|
2020-04-16 12:59:38 +00:00
|
|
|
target_compile_definitions(poirp_drv PRIVATE KMT_STANDALONE_DRIVER)
|
2015-10-11 17:06:14 +00:00
|
|
|
#add_pch(poirp_drv ../include/kmt_test.h)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET poirp_drv)
|