mirror of
https://github.com/reactos/reactos.git
synced 2025-01-08 23:31:53 +00:00
e1ef078741
The idea then would be to have the following behaviour (when specifying the following options in the kernel command line): /DEBUGPORT=COMi --> load KDCOM.DLL and use COMi port (i == 1,2,3,4) if possible. /DEBUGPORT=FOO --> load KDFOO.DLL (useful for KDUSB.DLL, KD1394.DLL, KDBAZIS.DLL for VirtualKD, etc...) /DEBUGPORT=ROSDBG:[COMi|SCREEN|FILE|GDB|...] --> load KDROSDBG.DLL which contains the ROS kernel debugger, and use COMi or SCREEN or... as output port. svn path=/branches/kd++/; revision=58883
28 lines
537 B
CMake
28 lines
537 B
CMake
|
|
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 ${SOURCE})
|
|
set_module_type(mstsc win32gui UNICODE)
|
|
add_importlibs(mstsc user32 gdi32 comctl32 ws2_32 advapi32 shell32 ole32 comdlg32 msvcrt kernel32)
|
|
add_pch(mstsc precomp.h)
|
|
add_cd_file(TARGET mstsc DESTINATION reactos/system32 FOR all)
|