mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
609ba8d717
svn path=/branches/shell-experiments/; revision=64830
11 lines
276 B
CMake
11 lines
276 B
CMake
|
|
add_definitions(-D__USE_W32_SOCKETS)
|
|
add_executable(ping ping.c ping.rc)
|
|
set_module_type(ping win32cui UNICODE)
|
|
add_importlibs(ping user32 ws2_32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(ping ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET ping DESTINATION reactos/system32 FOR all)
|