mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
24 lines
446 B
CMake
24 lines
446 B
CMake
|
|
add_definitions(-Dlint)
|
|
|
|
list(APPEND SOURCE
|
|
cmds.c
|
|
cmdtab.c
|
|
domacro.c
|
|
fake.c
|
|
ftp.c
|
|
main.c
|
|
ruserpass.c
|
|
precomp.h)
|
|
|
|
add_executable(ftp ${SOURCE} ftp.rc)
|
|
set_module_type(ftp win32cui)
|
|
add_importlibs(ftp ws2_32 iphlpapi msvcrt kernel32)
|
|
add_pch(ftp precomp.h SOURCE)
|
|
|
|
if(MSVC)
|
|
target_link_libraries(ftp oldnames)
|
|
add_importlibs(ftp ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET ftp DESTINATION reactos/system32 FOR all)
|