1
2add_definitions(-D__USE_W32_SOCKETS)
3
4list(APPEND SOURCE
5    finger.c
6    err.c
7    getopt.c
8    net.c
9    precomp.h)
10
11add_executable(finger ${SOURCE} finger.rc)
12set_module_type(finger win32cui)
13add_importlibs(finger ws2_32 msvcrt kernel32)
14add_pch(finger precomp.h SOURCE)
15add_cd_file(TARGET finger DESTINATION reactos/system32 FOR all)
16