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