reactos/rostests/kmtests/ntos_mm/CMakeLists.txt
Pierre Schweitzer 6db40277dc [KMTESTS:MM]
Add tests for the NtCreateSection functions which mimic some of the behavior that can be exposed by FSDs (late init, too small files, and so on).
It was designed in W2K3.

svn path=/trunk/; revision=73198
2016-11-10 21:02:48 +00:00

18 lines
601 B
CMake

include_directories(../include)
#
# NtCreateSection
#
list(APPEND NTCREATESECTION_DRV_SOURCE
../kmtest_drv/kmtest_standalone.c
NtCreateSection_drv.c)
add_library(ntcreatesection_drv SHARED ${NTCREATESECTION_DRV_SOURCE})
set_module_type(ntcreatesection_drv kernelmodedriver)
target_link_libraries(ntcreatesection_drv kmtest_printf ${PSEH_LIB})
add_importlibs(ntcreatesection_drv ntoskrnl hal)
add_target_compile_definitions(ntcreatesection_drv KMT_STANDALONE_DRIVER)
#add_pch(ntcreatesection_drv ../include/kmt_test.h)
add_cd_file(TARGET ntcreatesection_drv DESTINATION reactos/bin FOR all)