reactos/rostests/drivers/tcpip/CMakeLists.txt
Jérôme Gardou 1f7304870c [TCPIP_DRVTEST]
- Add quite a lot of tests for IOCTL_TCP_QUERY_INFORMATION_EX
This IOCTL is quite important because that's how iphlpapi gets data from it.
Also, this can be used as a viewer for quite a lot SNMP info as described here: http://www.oidview.com/mibs/0/RFC1213-MIB.html

svn path=/trunk/; revision=66070
2015-01-21 15:55:00 +00:00

14 lines
357 B
CMake

include_directories(../../apitests/include)
list(APPEND SOURCE
InterfaceInfo.c
tcp_info.c
testlist.c)
add_executable(tcpip_drvtest ${SOURCE})
target_link_libraries(tcpip_drvtest wine)
set_module_type(tcpip_drvtest win32cui)
add_importlibs(tcpip_drvtest msvcrt kernel32 ntdll)
add_cd_file(TARGET tcpip_drvtest DESTINATION reactos/bin FOR all)