mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
12 lines
299 B
CMake
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)
|