mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.6 KiB
79 lines
1.6 KiB
!IF 0
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
|
|
Author:
|
|
|
|
Marc Reyhner 7/21/00
|
|
|
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
|
|
TERMSRV_ROOT=$(PROJECT_ROOT)
|
|
TSHRCLNT_ROOT=$(TERMSRV_ROOT)\newclient
|
|
REMDSK_ROOT=$(PROJECT_ROOT)\remdsk
|
|
IDL_OUTPUTDIR=$(REMDSK_ROOT)\idl\obj\$(TARGET_DIRECTORY)
|
|
|
|
MAJORCOMP=rdsk
|
|
MINORCOMP=rdskmessenger
|
|
|
|
TARGETNAME=rcontrol
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
|
|
PRECOMPILED_INCLUDE=stdafx.h
|
|
PRECOMPILED_SOURCEFILE=stdafx.cpp
|
|
PRECOMPILED_CXX = 1
|
|
|
|
USE_MSVCRT=1
|
|
USE_STL=1
|
|
USE_NATIVE_EH=1
|
|
NOT_LEAN_AND_MEAN=1
|
|
ATL_VER=30
|
|
USE_STATIC_ATL=1
|
|
USE_VCCOM=1
|
|
USE_PDB=1
|
|
|
|
C_DEFINES=-DWIN32 -D_WINDOWS -D_UNICODE -DDEBUGMEM
|
|
|
|
INCLUDES=\
|
|
$(IDL_OUTPUTDIR); \
|
|
$(DS_INC_PATH)\crypto;
|
|
|
|
SOURCES= \
|
|
rcontrol.rc \
|
|
ApprovalDialog.cpp \
|
|
DirectPlayConnection.cpp \
|
|
Exception.cpp \
|
|
rcontrol.cpp \
|
|
RemoteDesktopClientEventSink.cpp \
|
|
RemoteDesktopClientSession.cpp \
|
|
RemoteDesktopServer.cpp \
|
|
RemoteDesktopServerEventSink.cpp \
|
|
StaticOkDialog.cpp
|
|
|
|
TARGETLIBS= \
|
|
$(BASEDIR)\public\sdk\lib\*\atl.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\dplayx.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ole32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\uuid.lib \
|
|
$(TERMSRV_ROOT)\lib\$(O)\tsctrcu.lib
|