[KMTESTS:PO]
[reactos.git] / rostests / kmtests / ntos_po / CMakeLists.txt
1
2 include_directories(../include)
3
4 #
5 # PoIrp
6 #
7 list(APPEND POIRP_DRV_SOURCE
8 ../kmtest_drv/kmtest_standalone.c
9 PoIrp_drv.c)
10
11 add_library(poirp_drv SHARED ${POIRP_DRV_SOURCE})
12 set_module_type(poirp_drv kernelmodedriver)
13 target_link_libraries(poirp_drv kmtest_printf ${PSEH_LIB})
14 add_importlibs(poirp_drv ntoskrnl hal)
15 add_target_compile_definitions(poirp_drv KMT_STANDALONE_DRIVER)
16 #add_pch(poirp_drv ../include/kmt_test.h)
17 add_cd_file(TARGET poirp_drv DESTINATION reactos/bin FOR all)