reactos/rosapps/applications/cmdutils/arping/CMakeLists.txt
Pierre Schweitzer 575842c05c [ARPING]
Implement an arping tool. Some portions of code are just plain copy/paste from ping tool code (booh, it's bad!).
It was designed and tested on W2K3.

It's in RosApps for two major reasons: such a tool doesn't exist by default in Windows 2K3.
And it doesn't work in ReactOS.

svn path=/trunk/; revision=70212
2015-11-29 19:44:29 +00:00

12 lines
299 B
CMake

add_definitions(-D__USE_W32_SOCKETS)
add_executable(arping arping.c arping.rc)
set_module_type(arping win32cui UNICODE)
add_importlibs(arping user32 ws2_32 iphlpapi msvcrt kernel32)
if(MSVC)
add_importlibs(arping ntdll)
endif()
add_cd_file(TARGET arping DESTINATION reactos/system32 FOR all)