mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
16 lines
339 B
CMake
16 lines
339 B
CMake
|
|
add_definitions(-D__USE_W32_SOCKETS)
|
|
|
|
list(APPEND SOURCE
|
|
finger.c
|
|
err.c
|
|
getopt.c
|
|
net.c
|
|
precomp.h)
|
|
|
|
add_executable(finger ${SOURCE} finger.rc)
|
|
set_module_type(finger win32cui)
|
|
add_importlibs(finger ws2_32 msvcrt kernel32)
|
|
add_pch(finger precomp.h SOURCE)
|
|
add_cd_file(TARGET finger DESTINATION reactos/system32 FOR all)
|