reactos/base/applications/network/telnet/CMakeLists.txt
Amine Khaldi 4efda499f7 [CMAKE]
Jerome Gardou:
- Add STLport 5.2.1 (yes, STLport, the c++ stl implementation) to build. For now, it works only in user mode.
- Link some c++ executables to it
- sol.exe : one step towards a complete and modern OS.
- Dedicated to Amine for his patience and his help.
- Might Break Things! (tm)

svn path=/branches/cmake-bringup/; revision=49046
2010-10-07 22:09:31 +00:00

30 lines
582 B
CMake

add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
add_executable(telnet
src/ansiprsr.cpp
src/keytrans.cpp
src/tcharmap.cpp
src/tconsole.cpp
src/tkeydef.cpp
src/tkeymap.cpp
src/tmapldr.cpp
src/tmouse.cpp
src/tnclass.cpp
src/tnclip.cpp
src/tncon.cpp
src/tnconfig.cpp
src/tnerror.cpp
src/tnetwork.cpp
src/tnmain.cpp
src/tnmisc.cpp
src/tscript.cpp
src/tscroll.cpp
src/ttelhndl.cpp
telnet.rc)
target_link_libraries(telnet stlport)
set_module_type(telnet win32cui)
add_importlibs(telnet ws2_32 user32 msvcrt)