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