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.
104 lines
2.3 KiB
104 lines
2.3 KiB
!IF 0
|
|
|
|
Copyright (c) 1989-1991 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.
|
|
|
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
PRECOMPILED_INCLUDE=pch.h
|
|
PRECOMPILED_PCH=pch.pch
|
|
PRECOMPILED_OBJ=pch.obj
|
|
PRECOMPILED_CXX=1
|
|
TARGETNAME=dskquoui
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=1
|
|
USE_VCCOM=1
|
|
|
|
#
|
|
# Fusion / Side By Side stuff
|
|
#
|
|
SXS_ASSEMBLY_NAME=dskquoui
|
|
SXS_ASSEMBLY_VERSION=1.0
|
|
SXS_ASSEMBLY_LANGUAGE=0000
|
|
SXS_MANIFEST=dskquoui.manifest
|
|
SXS_MANIFEST_IN_RESOURCES=
|
|
SXS_NO_BINPLACE=1
|
|
#
|
|
# Per LAmadio recommendation for shfusion usage
|
|
#
|
|
LINKER_FLAGS=$(LINKER_FLAGS) -ignore:4049,4217
|
|
|
|
|
|
C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE
|
|
|
|
!IF !$(FREEBUILD)
|
|
C_DEFINES=$(C_DEFINES) -DDEBUG
|
|
!ENDIF
|
|
|
|
#
|
|
# Define PROFILE to enable IceCAP profiling.
|
|
#
|
|
!IF "$(PROFILE)" == "1"
|
|
USE_ICECAP=1
|
|
C_DEFINES=$(C_DEFINES) -DPROFILE
|
|
!ENDIF
|
|
|
|
#
|
|
# Make warnings equivalent to errors
|
|
#
|
|
MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
|
|
|
|
|
|
INCLUDES=.;\
|
|
..\common; \
|
|
..\common\$(O); \
|
|
..\control; \
|
|
..\control\$(O);
|
|
|
|
SOURCES= extinit.cpp \
|
|
details.cpp \
|
|
dskquoui.cpp \
|
|
dynarray.cpp \
|
|
dskquoui.rc \
|
|
factory.cpp \
|
|
format.cpp \
|
|
progress.cpp \
|
|
prshtext.cpp \
|
|
undo.cpp \
|
|
userprop.cpp \
|
|
volprop.cpp \
|
|
yntoall.cpp \
|
|
ownerlst.cpp \
|
|
ownerdlg.cpp \
|
|
adusrdlg.cpp \
|
|
uiutils.cpp \
|
|
alloc.cpp
|
|
|
|
TARGETLIBS=$(ICECAP_LIBS) \
|
|
..\common\$(O)\common.lib\
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\htmlhelp.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SHELL_LIB_PATH)\shell32p.lib \
|
|
$(SHELL_LIB_PATH)\shfusion.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib
|