mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
1f7304870c
- 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
13 lines
357 B
CMake
13 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)
|