reactos/base/applications/mstsc/CMakeLists.txt
Jérôme Gardou 53fbd8e185 [CMAKE]
Completely refactor bootcd generation
  - one macro (à la cmake's install) to rule them all, to make your life simpler and have build files cleaner
  - Completely rehaul the bootcd tree : now you have in it some minimal reactos system
  - reflect those changes in setupldr
No livecd yet!

svn path=/branches/cmake-bringup/; revision=51731
2011-05-14 13:49:39 +00:00

34 lines
626 B
CMake

set_unicode()
list(APPEND SOURCE
bitmap.c
bsops.c
cache.c
channels.c
connectdialog.c
iso.c
licence.c
mcs.c
mppc.c
orders.c
pstcache.c
rdp5.c
rdp.c
secure.c
settings.c
ssl_calls.c
tcp.c
uimain.c
win32.c
rdc.rc)
add_executable(mstsc ${CMAKE_CURRENT_BINARY_DIR}/mstsc_precomp.h.gch ${SOURCE})
add_pch(mstsc ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
set_module_type(mstsc win32gui)
add_importlibs(mstsc user32 gdi32 comctl32 ws2_32 advapi32 shell32 ole32 comdlg32 msvcrt kernel32)
add_cd_file(TARGET mstsc DESTINATION reactos/system32)