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