reactos/rostests/apitests/iphlpapi/CMakeLists.txt
Pierre Schweitzer 1fe3047f6b [IPHLPAPI_APITEST]
Add a new apitest for iphlpapi.dll.
It includes tests for testing the SendARP() and its underlying IOCTL.

Tested against W2K3.
Obviously, most of these tests fail on ReactOS.

svn path=/trunk/; revision=70210
2015-11-29 19:31:33 +00:00

11 lines
327 B
CMake

list(APPEND SOURCE
SendARP.c
testlist.c)
add_executable(iphlpapi_apitest ${SOURCE})
target_link_libraries(iphlpapi_apitest wine ${PSEH_LIB})
set_module_type(iphlpapi_apitest win32cui)
add_importlibs(iphlpapi_apitest iphlpapi msvcrt kernel32 ntdll)
add_cd_file(TARGET iphlpapi_apitest DESTINATION reactos/bin FOR all)