mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[CMAKE]
- Add missing define. svn path=/branches/cmake-bringup/; revision=50341
This commit is contained in:
parent
4bb42765f5
commit
b02f54b843
1 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
|
||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||
add_definitions(
|
||||
-D_DLL -D__USE_CRTIMP
|
||||
-Dlint)
|
||||
|
||||
add_executable(ftp
|
||||
cmds.c
|
||||
|
@ -12,11 +14,11 @@ add_executable(ftp
|
|||
ftp.rc)
|
||||
|
||||
set_module_type(ftp win32cui)
|
||||
|
||||
add_importlibs(ftp ws2_32 iphlpapi msvcrt kernel32)
|
||||
|
||||
if(MSVC)
|
||||
target_link_libraries(ftp oldnames)
|
||||
add_importlibs(ftp ntdll)
|
||||
target_link_libraries(ftp oldnames)
|
||||
add_importlibs(ftp ntdll)
|
||||
endif()
|
||||
|
||||
add_cab_target(ftp 1)
|
||||
|
|
Loading…
Reference in a new issue