[SNDVOL32] Add the small line dialog
[reactos.git] / base / applications / network / ftp / CMakeLists.txt
1
2 add_definitions(-Dlint)
3
4 list(APPEND SOURCE
5 cmds.c
6 cmdtab.c
7 domacro.c
8 fake.c
9 ftp.c
10 main.c
11 ruserpass.c
12 precomp.h)
13
14 add_executable(ftp ${SOURCE} ftp.rc)
15 set_module_type(ftp win32cui)
16 add_importlibs(ftp ws2_32 iphlpapi msvcrt kernel32)
17 add_pch(ftp precomp.h SOURCE)
18
19 if(MSVC)
20 target_link_libraries(ftp oldnames)
21 add_importlibs(ftp ntdll)
22 endif()
23
24 add_cd_file(TARGET ftp DESTINATION reactos/system32 FOR all)