Source code of Windows XP (NT5)
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.
|
|
# Active Directory Display Specifier Upgrade Tool # # Copyright (c) 2001 Microsoft Corporation # # 1 Mar 2001 sburns
TARGETNAME=dspecup TARGETPATH=obj TARGETTYPE=LIBRARY UMTYPE=windows
# always do logging in both fre and chk builds
!MESSAGE defining LOGGING_BUILD C_DEFINES=$(C_DEFINES) -DLOGGING_BUILD BURNSLIB_SUFFIX=l
PASS1_PUBLISH= \ {$(O)\dspecup.lib=$(ADMIN_LIB_PATH)\dspecup.lib}
# ISOLATION_AWARE_ENABLED ==> use ui themes, not really needed here, but # makes burnslib simpler to use accross DLLs and EXEs
C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE -DISOLATION_AWARE_ENABLED
#C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE
INCLUDES= .\; \ $(PROJECT_ROOT)\burnslib\inc; \ $(DS_INC_PATH); \ $(NET_INC_PATH); \ $(SHELL_INC_PATH);
# required for C++ exceptions USE_NATIVE_EH=1
# required for thread-safe heap USE_MSVCRT=1
# required to support dynamic_cast USE_RTTI=1
# required for STL (list, vector, string, etc.) USE_STL=1
# required for precompiled header PRECOMPILED_INCLUDE=headers.hxx PRECOMPILED_CXX=1
# link with vccomsup.lib USE_VCCOM=1
USE_PDB=1
MSC_WARNING_LEVEL=/W4
SOURCES=\ dspecup.rc \ Analisys.cpp \ constants.cpp \ CSVDSReader.cpp \ repair.cpp \ global.cpp \ dspecup.cpp
|