WindowsXP-SP1/termsrv/setup/service/sources
2020-09-30 16:53:49 +02:00

82 lines
1.7 KiB
Plaintext

#Copyright (c) 1998 - 1999 Microsoft Corporation
!IF 0
Module Name:
sources.inc
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:
Makarand Patwardhan (makarp)
!ENDIF
TERMSRV_ROOT = ..\..
INCLUDES= \
$(TERMSRV_ROOT)\license\TLServer\common; \
$(TERMSRV_ROOT)\common\license\inc; \
$(TERMSRV_ROOT)\license\TLServer\include; \
$(BASE_INC_PATH);
MAJORCOMP=consrv
MINORCOMP=consrv
TARGETPATH=obj
TARGETTYPE=PROGRAM
TARGETNAME=consrv
C_DEFINES=-DWIN32
#C_DEFINES=-DWIN32
USE_STL=1
SOURCES= service.cpp \
logmsg.cpp
TARGETLIBS= \
$(TERMSRV_LIB_PATH)\syslib.lib \
$(TERMSRV_ROOT)\lib\$(O)\common.lib \
$(TERMSRV_ROOT)\lib\$(O)\tlsapip.lib \
$(SDK_LIB_PATH)\user32.lib \
$(SDK_LIB_PATH)\netapi32.lib \
$(SDK_LIB_PATH)\clusapi.lib \
$(SDK_LIB_PATH)\user32.lib \
$(SDK_LIB_PATH)\shell32.lib \
$(SDK_LIB_PATH)\setupapi.lib \
$(SDK_LIB_PATH)\ntdll.lib \
$(SDK_LIB_PATH)\advapip.lib \
$(SDK_LIB_PATH)\advapi32.lib \
$(SDK_LIB_PATH)\version.lib \
$(SDK_LIB_PATH)\imagehlp.lib \
$(SDK_LIB_PATH)\ws2_32.lib \
$(SDK_LIB_PATH)\wtsapi32.lib
#PRECOMPILED_INCLUDE = stdafx.h
#PRECOMPILED_SOURCEFILE = stdafx.cpp
#PRECOMPILED_CXX = 1
UMTYPE=console
USE_MSVCRT = 1
USE_IOSTREAM = 1
386_WARNING_LEVEL=-W4