[ROSTESTS]
[reactos.git] / rostests / kmtests / tcpip / CMakeLists.txt
1
2 include_directories(../include)
3
4 list(APPEND TCPIP_TEST_DRV_SOURCE
5 ../kmtest_drv/kmtest_standalone.c
6 connect.c
7 tdi.c
8 TcpIp_drv.c)
9
10 add_library(tcpip_drv SHARED ${TCPIP_TEST_DRV_SOURCE})
11 set_module_type(tcpip_drv kernelmodedriver)
12 target_link_libraries(tcpip_drv kmtest_printf ${PSEH_LIB})
13 add_importlibs(tcpip_drv ntoskrnl hal)
14 add_target_compile_definitions(tcpip_drv KMT_STANDALONE_DRIVER)
15 #add_pch(example_drv ../include/kmt_test.h)
16 add_rostests_file(TARGET tcpip_drv)