110 lines
3.5 KiB
Plaintext
110 lines
3.5 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1999-2000 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.
|
||
|
|
||
|
|
||
|
History:
|
||
|
Moved from \nt\shell\ext\AutoDiscovery\ to \nt\inetcore\OutlookExpress\AutoDiscovery\ 10-Apr-2000 Bryan Starbuck (BryanSt)
|
||
|
Converted for AutoDiscovery 11-Dec-99 Bryan Starbuck (BryanSt)
|
||
|
Cleanup for Neptune 13-Aug-99 Bryan Starbuck (BryanSt)
|
||
|
Created 27-Sep-94 by Bob Day (bobday)
|
||
|
from template created 12-Apr-1990 by Steve Wood (stevewo)
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
|
||
|
TARGET_BOTH = 1
|
||
|
PRECOMPILED_CXX = 1
|
||
|
|
||
|
USE_STATIC_ATL = 1
|
||
|
|
||
|
|
||
|
NO_BROWSER_FILE = 1
|
||
|
|
||
|
USE_ATL = 1
|
||
|
ATL_VER = 30
|
||
|
|
||
|
SOURCES_USED = $(SOURCES_USED)
|
||
|
INCLUDES = $(INCLUDES);$(SDK_LIB_PATH);$(DS_INC_PATH);$(PROJECT_ROOT)\lib\$(0);$(O);$(SHELL_INC_PATH)
|
||
|
C_DEFINES = $(C_DEFINES) -D_USRDLL -DUNICODE
|
||
|
|
||
|
# We may want to use 0x0400
|
||
|
WIN32_WINNT_VERSION=0x0400
|
||
|
WIN32_WIN95_VERSION=0x0400
|
||
|
|
||
|
TARGETNAME = AUTODISC
|
||
|
TARGETPATH = obj
|
||
|
TARGETTYPE = DYNLINK
|
||
|
|
||
|
# ignore link warning from multiple versions of IID_IMessage
|
||
|
LINKER_FLAGS = $(LINKER_FLAGS) -IGNORE:4006,4088
|
||
|
|
||
|
# make sure shlwapi.lib is before shell32.lib for override.
|
||
|
# for DOJ compliance, don't link to shell32p.lib
|
||
|
TARGETLIBS = \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
||
|
$(DS_LIB_PATH)\rsa32.lib \
|
||
|
$(SHELL_LIB_PATH)\shlwapip.lib \
|
||
|
$(SHELL_LIB_PATH)\comctlp.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(LIBRARY_PATH)\wininet.lib
|
||
|
|
||
|
|
||
|
USE_MSVCRT = 1
|
||
|
|
||
|
DLLDEF = $(O)\autodisc.def
|
||
|
DLLENTRY = DllEntry
|
||
|
DLLBASE = 0x71200000
|
||
|
|
||
|
INCLUDES = $(INCLUDES);$(PROJECT_ROOT)\lib\$(O);$(O)
|
||
|
|
||
|
|
||
|
PRECOMPILED_INCLUDE = priv.h
|
||
|
|
||
|
NTTARGETFILES =
|
||
|
|
||
|
SOURCES = \
|
||
|
ACEmail.cpp \
|
||
|
AutoDiscBase.cpp \
|
||
|
AutoDiscover.cpp \
|
||
|
AutoDiscMail.cpp \
|
||
|
classfactory.cpp \
|
||
|
cobjsafe.cpp \
|
||
|
cowsite.cpp \
|
||
|
debug.cpp \
|
||
|
dspsprt.cpp \
|
||
|
dllload.cpp \
|
||
|
dllreg.cpp \
|
||
|
dllmain.cpp \
|
||
|
EmailAssoc.cpp \
|
||
|
guids.cpp \
|
||
|
INStoXML.cpp \
|
||
|
MailBox.cpp \
|
||
|
MailBoxUI.cpp \
|
||
|
MBDeskBar.cpp \
|
||
|
MailProtocol.cpp \
|
||
|
objcache.cpp \
|
||
|
resource.rc \
|
||
|
util.cpp \
|
||
|
wizard.cpp
|
||
|
|