reactos/base/applications/calc/CMakeLists.txt
Timo Kreuzer 3f7c3ba575 [CMAKE]
On MSVC builds link eventvwr, dwnl, ftp, ping, telnet, tracert to ntdll to resolve _allmul and friends
link ftp to oldnames

svn path=/branches/cmake-bringup/; revision=49902
2010-12-02 19:44:46 +00:00

21 lines
334 B
CMake

set_unicode()
add_definitions(-DDISABLE_HTMLHELP_SUPPORT=1)
add_executable(calc
about.c
convert.c
function.c
rpn.c
utl.c
winmain.c
resource.rc)
set_module_type(calc win32gui)
add_importlibs(calc advapi32 user32 gdi32 msvcrt kernel32)
if(MSVC)
add_importlibs(calc ntdll)
endif()
add_cab_target(calc 1)