104 lines
1.9 KiB
Plaintext
104 lines
1.9 KiB
Plaintext
|
!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:
|
||
|
|
||
|
Steve Wood (stevewo) 12-Apr-1990
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME=confmsp
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
USE_RTTI=1
|
||
|
USE_CRTDLL=1
|
||
|
USE_ATL=1
|
||
|
USE_NATIVE_EH=1
|
||
|
USE_MAPSYM=1
|
||
|
BROWSER_INFO=1
|
||
|
# MSC_WARNING_LEVEL=/W4
|
||
|
|
||
|
# Enable tracing.
|
||
|
C_DEFINES=$(C_DEFINES) -DMSPLOG
|
||
|
|
||
|
# Use unicode.
|
||
|
C_DEFINES=$(C_DEFINES) -DUNICODE
|
||
|
|
||
|
!IF defined (USE_DYNGRAPH)
|
||
|
C_DEFINES=$(C_DEFINES) -DDYNGRAPH
|
||
|
!endif
|
||
|
|
||
|
INCLUDES=\
|
||
|
$(BASEDIR)\public\sdk\amovie\inc; \
|
||
|
..\inc; \
|
||
|
..\..\inc;\
|
||
|
..\..\..\inc;
|
||
|
|
||
|
TARGETLIBS=$(TARGETLIBS) \
|
||
|
$(LIBRARY_PATH)\mspbase.lib \
|
||
|
$(LIBRARY_PATH)\kernel32.lib \
|
||
|
$(LIBRARY_PATH)\ole32.lib \
|
||
|
$(LIBRARY_PATH)\oleaut32.lib \
|
||
|
$(LIBRARY_PATH)\ws2_32.lib \
|
||
|
$(LIBRARY_PATH)\uuid.lib \
|
||
|
$(LIBRARY_PATH)\advapi32.lib \
|
||
|
$(LIBRARY_PATH)\user32.lib \
|
||
|
$(LIBRARY_PATH)\strmiids.lib \
|
||
|
$(LIBRARY_PATH)\winmm.lib \
|
||
|
$(LIBRARY_PATH)\rtutils.lib
|
||
|
|
||
|
!IF !$(FREEBUILD)
|
||
|
C_DEFINES=$(C_DEFINES) -DDEBUG_QUALITY_CONTROL
|
||
|
!ENDIF
|
||
|
|
||
|
!IF defined (DEBUG_MEMORY) && !$(FREEBUILD)
|
||
|
#!IF !$(FREEBUILD)
|
||
|
|
||
|
DEBUG_CRTS=1
|
||
|
C_DEFINES=$(C_DEFINES) -D_CRTDBG_MAP_ALLOC -D_DEBUG
|
||
|
|
||
|
TARGETLIBS=$(TARGETLIBS) \
|
||
|
$(LIBRARY_PATH)\msvcrtd.lib
|
||
|
!ENDIF
|
||
|
|
||
|
PRECOMPILED_INCLUDE=stdafx.h
|
||
|
PRECOMPILED_PCH=stdafx.pch
|
||
|
PRECOMPILED_OBJ=stdafx.obj
|
||
|
PRECOMPILED_CXX=1
|
||
|
|
||
|
SOURCES=\
|
||
|
confmsp.idl \
|
||
|
confmsp.rc \
|
||
|
confmsp.cpp \
|
||
|
confaddr.cpp \
|
||
|
confaud.cpp \
|
||
|
confaudt.cpp \
|
||
|
confcall.cpp \
|
||
|
confpart.cpp \
|
||
|
confstrm.cpp \
|
||
|
confterm.cpp \
|
||
|
confutil.cpp \
|
||
|
confvid.cpp \
|
||
|
confvidt.cpp \
|
||
|
qccall.cpp \
|
||
|
qcstream.cpp
|
||
|
|
||
|
|
||
|
DLLENTRY=_DllMainCRTStartup
|