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