ICU-6307 Undo previous commit. Due to unexpected and unforeseen build failure.

X-SVN-Rev: 24444
This commit is contained in:
Michael Ow 2008-08-05 22:15:46 +00:00
parent e20dbc5d8a
commit 3d1a4a3fce
71 changed files with 1128 additions and 1143 deletions

View File

@ -16,7 +16,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -51,10 +51,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/common.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/common.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
/>
@ -107,7 +107,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -143,10 +143,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/common.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/common.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"

View File

@ -112,11 +112,7 @@ ICUDATA=$(ICUP)\source\data
# This is the same place that all of the other ICU DLLs go (the code-containing DLLs)
# The lib file for the data DLL goes in $(DLL_OUTPUT)/../lib/
#
!IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
DLL_OUTPUT=$(ICUP)\bin64
!ELSE
DLL_OUTPUT=$(ICUP)\bin
!ENDIF
#
# TESTDATA
@ -142,14 +138,7 @@ TESTDATABLD=$(ICUP)\source\test\testdata\out\build
ICUTOOLS=$(ICUP)\source\tools
# The current ICU tools need to be in the path first.
!IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
PATH = $(ICUP)\bin64;$(PATH)
ICUPBIN=$(ICUP)\bin64
!ELSE
PATH = $(ICUP)\bin;$(PATH)
ICUPBIN=$(ICUP)\bin
!ENDIF
# This variable can be overridden to "-m static" by the project settings,
# if you want a static data library.
@ -349,7 +338,7 @@ ALL_RES = $(ALL_RES) $(RB_FILES) $(MISC_FILES)
!ENDIF
# Common defines for both ways of building ICU's data library.
COMMON_ICUDATA_DEPENDENCIES="$(ICUPBIN)\pkgdata.exe" "$(ICUTMP)\icudata.res" "$(ICUP)\source\stubdata\stubdatabuilt.txt"
COMMON_ICUDATA_DEPENDENCIES="$(ICUP)\bin\pkgdata.exe" "$(ICUTMP)\icudata.res" "$(ICUP)\source\stubdata\stubdatabuilt.txt"
COMMON_ICUDATA_ARGUMENTS=-f -e $(U_ICUDATA_NAME) -v $(ICU_PACKAGE_MODE) -M"PKGDATA_LDFLAGS=/base:0x4ad00000" -c -p $(ICUPKG) -T "$(ICUTMP)" -L $(U_ICUDATA_NAME) -d "$(ICUBLD_PKG)" -s .
#############################################################################
@ -381,7 +370,7 @@ uni-core-data: GODATA "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase.icu" "$(IC
"$(TESTDATAOUT)\testdata.dat": "$(TESTDATA)\*" "$(ICUBLD_PKG)\ucadata.icu" $(TRANSLIT_RES_FILES) $(MISC_FILES) $(RB_FILES) {"$(ICUTOOLS)\genrb\$(CFG)"}genrb.exe
@cd "$(TESTDATA)"
@echo building testdata...
nmake /nologo /f "$(TESTDATA)\testdata.mak" TESTDATA=. ICUTOOLS="$(ICUTOOLS)" ICUPBIN="$(ICUPBIN)" ICUP="$(ICUP)" CFG=$(CFG) TESTDATAOUT="$(TESTDATAOUT)" TESTDATABLD="$(TESTDATABLD)"
nmake /nologo /f "$(TESTDATA)\testdata.mak" TESTDATA=. ICUTOOLS="$(ICUTOOLS)" ICUP="$(ICUP)" CFG=$(CFG) TESTDATAOUT="$(TESTDATAOUT)" TESTDATABLD="$(TESTDATABLD)"
#invoke pkgdata for ICU common data
# pkgdata will drop all output files (.dat, .dll, .lib) into the target (ICUBLD_PKG) directory.
@ -395,8 +384,8 @@ uni-core-data: GODATA "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase.icu" "$(IC
"$(ICU_LIB_TARGET)" : $(COMMON_ICUDATA_DEPENDENCIES) "$(ICUDATA_SOURCE_ARCHIVE)"
@echo Building icu data from $(ICUDATA_SOURCE_ARCHIVE)
cd "$(ICUBLD_PKG)"
"$(ICUPBIN)\icupkg" -x * --list "$(ICUDATA_SOURCE_ARCHIVE)" > "$(ICUTMP)\icudata.lst"
"$(ICUPBIN)\pkgdata" $(COMMON_ICUDATA_ARGUMENTS) "$(ICUTMP)\icudata.lst"
"$(ICUP)\bin\icupkg" -x * --list "$(ICUDATA_SOURCE_ARCHIVE)" > "$(ICUTMP)\icudata.lst"
"$(ICUP)\bin\pkgdata" $(COMMON_ICUDATA_ARGUMENTS) "$(ICUTMP)\icudata.lst"
copy "$(U_ICUDATA_NAME).dll" "$(DLL_OUTPUT)"
-@erase "$(U_ICUDATA_NAME).dll"
copy "$(ICUTMP)\$(ICUPKG).dat" "$(ICUOUT)\$(U_ICUDATA_NAME)$(U_ICUDATA_ENDIAN_SUFFIX).dat"
@ -405,7 +394,7 @@ uni-core-data: GODATA "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase.icu" "$(IC
"$(ICU_LIB_TARGET)" : $(COMMON_ICUDATA_DEPENDENCIES) $(CNV_FILES) "$(ICUBLD_PKG)\unames.icu" "$(ICUBLD_PKG)\pnames.icu" "$(ICUBLD_PKG)\cnvalias.icu" "$(ICUBLD_PKG)\ucadata.icu" "$(ICUBLD_PKG)\invuca.icu" "$(ICUBLD_PKG)\uidna.spp" $(BRK_FILES) $(BRK_CTD_FILES) $(BRK_RES_FILES) $(COL_COL_FILES) $(RBNF_RES_FILES) $(TRANSLIT_RES_FILES) $(ALL_RES)
@echo Building icu data
cd "$(ICUBLD_PKG)"
"$(ICUPBIN)\pkgdata" $(COMMON_ICUDATA_ARGUMENTS) <<"$(ICUTMP)\icudata.lst"
"$(ICUP)\bin\pkgdata" $(COMMON_ICUDATA_ARGUMENTS) <<"$(ICUTMP)\icudata.lst"
pnames.icu
unames.icu
ucadata.icu

View File

@ -16,19 +16,19 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="0"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="false"
BuildLogFile=".\out\tmp\x86\ReleaseBuildLog.html"
BuildLogFile=".\out\tmp\ReleaseBuildLog.html"
>
<Tool
Name="VCNMakeTool"
BuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Release"
ReBuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Release clean all"
CleanCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Release clean"
BuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=release"
ReBuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=release clean all"
CleanCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=release clean"
Output=""
PreprocessorDefinitions=""
IncludeSearchPath=""
@ -40,19 +40,19 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="0"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="false"
BuildLogFile=".\out\tmp\x86\DebugBuildLog.html"
BuildLogFile=".\out\tmp\DebugBuildLog.html"
>
<Tool
Name="VCNMakeTool"
BuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Debug"
ReBuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Debug clean all"
CleanCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=x86\Debug clean"
BuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=debug"
ReBuildCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=debug clean all"
CleanCommandLine="NMAKE /f makedata.mak ICUMAKE=&quot;$(ProjectDir)\&quot; CFG=debug clean"
Output=""
PreprocessorDefinitions=""
IncludeSearchPath=""

View File

@ -10,12 +10,12 @@
#If no config, we default to debug
!IF "$(CFG)" == ""
CFG=x86\Debug
CFG=Debug
!MESSAGE No configuration specified. Defaulting to common - Win32 Debug.
!ENDIF
#Here we test if a valid configuration is given
!IF "$(CFG)" != "x86\Release" && "$(CFG)" != "x86\Debug" && "$(CFG)" != "x64\Release" && "$(CFG)" != "x64\Debug"
!IF "$(CFG)" != "Release" && "$(CFG)" != "release" && "$(CFG)" != "Debug" && "$(CFG)" != "debug"
!MESSAGE Invalid configuration "$(CFG)" specified.
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
@ -45,16 +45,12 @@ DLL_OUTPUT=.\$(CFG)
# set the following to 'static' or 'dll' depending
PKGMODE=static
ICD=$(ICUDATA)^\
DATA_PATH=$(ICUP)\data^\
!IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
ICUTOOLS=$(ICUP)\bin64
PATH = $(ICUP)\bin64;$(PATH)
!ELSE
ICUTOOLS=$(ICUP)\bin
PATH = $(ICUP)\bin;$(PATH)
!ENDIF
# Suffixes for data files
.SUFFIXES : .ucm .cnv .dll .dat .res .txt .c

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/uconv.tlb"
TypeLibraryName=".\Release/uconv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/uconv.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/uconv.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -72,11 +72,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="uconvmsg.lib"
OutputFile=".\x86\Release/uconv.exe"
OutputFile=".\Release/uconv.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="x86\Release"
ProgramDatabaseFile=".\x86\Release/uconv.pdb"
AdditionalLibraryDirectories="Release"
ProgramDatabaseFile=".\Release/uconv.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -130,7 +130,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/uconv.tlb"
TypeLibraryName=".\Debug/uconv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -142,10 +142,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/uconv.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/uconv.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -165,12 +165,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="uconvmsg.lib"
OutputFile=".\x86\Debug/uconv.exe"
OutputFile=".\Debug/uconv.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="x86\Debug"
AdditionalLibraryDirectories="Debug"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/uconv.pdb"
ProgramDatabaseFile=".\Debug/uconv.pdb"
SubSystem="1"
/>
<Tool
@ -250,8 +250,8 @@
>
<Tool
Name="VCCustomBuildTool"
CommandLine="nmake /nologo /f $(InputName).mak icup=&quot;$(ProjectDir)..\..\..&quot; CFG=x86\Release&#x0D;&#x0A;"
Outputs="x86\Release/uconvmsg.lib"
CommandLine="nmake /nologo /f $(InputName).mak icup=&quot;$(ProjectDir)..\..\..&quot; CFG=Release&#x0D;&#x0A;"
Outputs="Release/uconvmsg.lib"
/>
</FileConfiguration>
<FileConfiguration
@ -259,8 +259,8 @@
>
<Tool
Name="VCCustomBuildTool"
CommandLine="nmake /nologo /f $(InputName).mak icup=&quot;$(ProjectDir)..\..\..&quot; CFG=x86\Debug&#x0D;&#x0A;"
Outputs="x86\Debug/uconvmsg.lib"
CommandLine="nmake /nologo /f $(InputName).mak icup=&quot;$(ProjectDir)..\..\..&quot; CFG=Debug&#x0D;&#x0A;"
Outputs="Debug/uconvmsg.lib"
/>
</FileConfiguration>
</File>

View File

@ -16,7 +16,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -52,10 +52,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/i18n.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/i18n.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -110,7 +110,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -147,10 +147,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/i18n.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/i18n.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"

View File

@ -16,7 +16,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -52,10 +52,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/icuio.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/icuio.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -110,7 +110,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -147,10 +147,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/icuio.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/icuio.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"

View File

@ -16,7 +16,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -53,10 +53,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/layout.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/layout.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -114,7 +114,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -150,10 +150,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/layout.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/layout.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"

View File

@ -17,7 +17,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -53,10 +53,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/layoutex.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/layoutex.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -110,7 +110,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -147,10 +147,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/layoutex.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/layoutex.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -41,7 +41,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Release/break.tlb"
TypeLibraryName=".\Release/break.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -53,10 +53,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/break.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/break.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -75,11 +75,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/break.exe"
OutputFile=".\Release/break.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/break.pdb"
ProgramDatabaseFile=".\Release/break.pdb"
SubSystem="1"
/>
<Tool
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -135,7 +135,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Debug/break.tlb"
TypeLibraryName=".\Debug/break.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -146,10 +146,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/break.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/break.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -169,12 +169,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/break.exe"
OutputFile=".\Debug/break.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/break.pdb"
ProgramDatabaseFile=".\Debug/break.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/cal.tlb"
TypeLibraryName=".\Release/cal.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/cal.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/cal.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/cal.exe"
OutputFile=".\Release/cal.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/cal.pdb"
ProgramDatabaseFile=".\Release/cal.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/cal.tlb"
TypeLibraryName=".\Debug/cal.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/cal.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/cal.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -162,12 +162,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/cal.exe"
OutputFile=".\Debug/cal.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/cal.pdb"
ProgramDatabaseFile=".\Debug/cal.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/case.tlb"
TypeLibraryName=".\Debug/case.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/case.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/case.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib icuiod.lib"
OutputFile=".\x86\Debug/case.exe"
OutputFile=".\Debug/case.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/case.pdb"
ProgramDatabaseFile=".\Debug/case.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/case.tlb"
TypeLibraryName=".\Release/case.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/case.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/case.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib icuio.lib"
OutputFile=".\x86\Release/case.exe"
OutputFile=".\Release/case.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/case.pdb"
ProgramDatabaseFile=".\Release/case.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,8 +16,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory="x86\Debug"
IntermediateDirectory="x86\Debug"
OutputDirectory="Debug"
IntermediateDirectory="Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
CharacterSet="2"
@ -98,8 +98,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory="x86\Release"
IntermediateDirectory="x86\Release"
OutputDirectory="Release"
IntermediateDirectory="Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
CharacterSet="2"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/coll.tlb"
TypeLibraryName=".\Release/coll.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/coll.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/coll.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuind.lib icuucd.lib"
OutputFile=".\x86\Release/coll.exe"
OutputFile=".\Release/coll.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/coll.pdb"
ProgramDatabaseFile=".\Release/coll.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/coll.tlb"
TypeLibraryName=".\Debug/coll.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/coll.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/coll.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -162,12 +162,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuind.lib icuucd.lib"
OutputFile=".\x86\Debug/coll.exe"
OutputFile=".\Debug/coll.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/coll.pdb"
ProgramDatabaseFile=".\Debug/coll.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,8 +16,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory="x86\Debug"
IntermediateDirectory="x86\Debug"
OutputDirectory="Debug"
IntermediateDirectory="Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
CharacterSet="2"
@ -98,8 +98,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory="x86\Release"
IntermediateDirectory="x86\Release"
OutputDirectory="Release"
IntermediateDirectory="Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
CharacterSet="2"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/date.tlb"
TypeLibraryName=".\Release/date.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/date.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/date.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/date.exe"
OutputFile=".\Release/date.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/date.pdb"
ProgramDatabaseFile=".\Release/date.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/date.tlb"
TypeLibraryName=".\Debug/date.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/date.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/date.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/date.exe"
OutputFile=".\Debug/date.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/date.pdb"
ProgramDatabaseFile=".\Debug/date.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/datefmt.tlb"
TypeLibraryName=".\Debug/datefmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/datefmt.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/datefmt.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/datefmt.exe"
OutputFile=".\Debug/datefmt.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/datefmt.pdb"
ProgramDatabaseFile=".\Debug/datefmt.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/datefmt.tlb"
TypeLibraryName=".\Release/datefmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/datefmt.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/datefmt.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/datefmt.exe"
OutputFile=".\Release/datefmt.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/datefmt.pdb"
ProgramDatabaseFile=".\Release/datefmt.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/layout.tlb"
TypeLibraryName=".\Release/layout.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/layout.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/layout.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="..\..\..\lib\iculx.lib ..\..\..\lib\icule.lib ..\..\..\lib\icuuc.lib ..\..\..\lib\icuin.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Release/layout.exe"
OutputFile=".\Release/layout.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/layout.pdb"
ProgramDatabaseFile=".\Release/layout.pdb"
SubSystem="2"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -126,7 +126,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/layout.tlb"
TypeLibraryName=".\Debug/layout.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -137,10 +137,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/layout.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/layout.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -160,11 +160,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="..\..\..\lib\iculxd.lib ..\..\..\lib\iculed.lib ..\..\..\lib\icuucd.lib ..\..\..\lib\icuind.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Debug/layout.exe"
OutputFile=".\Debug/layout.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/layout.pdb"
ProgramDatabaseFile=".\Debug/layout.pdb"
SubSystem="2"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/legacy.tlb"
TypeLibraryName=".\Release/legacy.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/legacy.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/legacy.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib ../../../../icu-1-8-1/lib/icuuc.lib ../../../../icu-1-8-1/lib/icuin.lib"
OutputFile=".\x86\Release/legacy.exe"
OutputFile=".\Release/legacy.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/legacy.pdb"
ProgramDatabaseFile=".\Release/legacy.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/legacy.tlb"
TypeLibraryName=".\Debug/legacy.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/legacy.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/legacy.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib ../../../../icu-1-8-1/lib/icuucd.lib ../../../../icu-1-8-1/lib/icuind.lib"
OutputFile=".\x86\Debug/legacy.exe"
OutputFile=".\Debug/legacy.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/legacy.pdb"
ProgramDatabaseFile=".\Debug/legacy.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/msgfmt.tlb"
TypeLibraryName=".\Release/msgfmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/msgfmt.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/msgfmt.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/msgfmt.exe"
OutputFile=".\Release/msgfmt.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/msgfmt.pdb"
ProgramDatabaseFile=".\Release/msgfmt.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/msgfmt.tlb"
TypeLibraryName=".\Debug/msgfmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/msgfmt.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/msgfmt.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Debug/msgfmt.exe"
OutputFile=".\Debug/msgfmt.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/msgfmt.pdb"
ProgramDatabaseFile=".\Debug/msgfmt.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/numfmt.tlb"
TypeLibraryName=".\Debug/numfmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/numfmt.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/numfmt.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/numfmt.exe"
OutputFile=".\Debug/numfmt.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/numfmt.pdb"
ProgramDatabaseFile=".\Debug/numfmt.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/numfmt.tlb"
TypeLibraryName=".\Release/numfmt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/numfmt.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/numfmt.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/numfmt.exe"
OutputFile=".\Release/numfmt.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/numfmt.pdb"
ProgramDatabaseFile=".\Release/numfmt.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/props.tlb"
TypeLibraryName=".\Release/props.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/props.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/props.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Release/props.exe"
OutputFile=".\Release/props.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/props.pdb"
ProgramDatabaseFile=".\Release/props.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/props.tlb"
TypeLibraryName=".\Debug/props.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/props.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/props.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Debug/props.exe"
OutputFile=".\Debug/props.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/props.pdb"
ProgramDatabaseFile=".\Debug/props.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/strsrch.tlb"
TypeLibraryName=".\Debug/strsrch.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/strsrch.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/strsrch.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -72,12 +72,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuind.lib icuucd.lib"
OutputFile=".\x86\Debug/strsrch.exe"
OutputFile=".\Debug/strsrch.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/strsrch.pdb"
ProgramDatabaseFile=".\Debug/strsrch.pdb"
SubSystem="1"
/>
<Tool
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/strsrch.tlb"
TypeLibraryName=".\Release/strsrch.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -141,10 +141,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/strsrch.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/strsrch.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -163,11 +163,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuin.lib icuuc.lib"
OutputFile=".\x86\Release/strsrch.exe"
OutputFile=".\Release/strsrch.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/strsrch.pdb"
ProgramDatabaseFile=".\Release/strsrch.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/translit.tlb"
TypeLibraryName=".\Debug/translit.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/translit.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/translit.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/translit.exe"
OutputFile=".\Debug/translit.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/translit.pdb"
ProgramDatabaseFile=".\Debug/translit.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/translit.tlb"
TypeLibraryName=".\Release/translit.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/translit.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/translit.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/translit.exe"
OutputFile=".\Release/translit.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/translit.pdb"
ProgramDatabaseFile=".\Release/translit.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/uciter8.tlb"
TypeLibraryName=".\Debug/uciter8.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/uciter8.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/uciter8.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib"
OutputFile=".\x86\Debug/uciter8.exe"
OutputFile=".\Debug/uciter8.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/uciter8.pdb"
ProgramDatabaseFile=".\Debug/uciter8.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/uciter8.tlb"
TypeLibraryName=".\Release/uciter8.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/uciter8.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/uciter8.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib"
OutputFile=".\x86\Release/uciter8.exe"
OutputFile=".\Release/uciter8.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/uciter8.pdb"
ProgramDatabaseFile=".\Release/uciter8.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/ucnv.tlb"
TypeLibraryName=".\Debug/ucnv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/ucnv.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/ucnv.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Debug/ucnv.exe"
OutputFile=".\Debug/ucnv.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/ucnv.pdb"
ProgramDatabaseFile=".\Debug/ucnv.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/ucnv.tlb"
TypeLibraryName=".\Release/ucnv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/ucnv.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/ucnv.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Release/ucnv.exe"
OutputFile=".\Release/ucnv.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/ucnv.pdb"
ProgramDatabaseFile=".\Release/ucnv.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/writer.tlb"
TypeLibraryName=".\Debug/writer.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/writer.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/writer.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icutud.lib"
OutputFile=".\x86\Debug/writer.exe"
OutputFile=".\Debug/writer.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/writer.pdb"
ProgramDatabaseFile=".\Debug/writer.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/writer.tlb"
TypeLibraryName=".\Release/writer.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/writer.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/writer.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icutu.lib"
OutputFile=".\x86\Release/writer.exe"
OutputFile=".\Release/writer.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/writer.pdb"
ProgramDatabaseFile=".\Release/writer.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/ufortune.tlb"
TypeLibraryName=".\Debug/ufortune.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -47,10 +47,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/ufortune.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/ufortune.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -70,12 +70,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib resources\fortune_resources.lib icuiod.lib"
OutputFile=".\x86\Debug/ufortune.exe"
OutputFile=".\Debug/ufortune.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/ufortune.pdb"
ProgramDatabaseFile=".\Debug/ufortune.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/ufortune.tlb"
TypeLibraryName=".\Release/ufortune.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/ufortune.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/ufortune.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -160,11 +160,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib resources\fortune_resources.lib icuio.lib"
OutputFile=".\x86\Release/ufortune.exe"
OutputFile=".\Release/ufortune.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/ufortune.pdb"
ProgramDatabaseFile=".\Release/ufortune.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/ugrep.tlb"
TypeLibraryName=".\Release/ugrep.tlb"
HeaderFileName=""
/>
<Tool
@ -51,10 +51,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/ugrep.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/ugrep.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -74,11 +74,11 @@
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="icuuc.lib icuin.lib"
OutputFile=".\x86\Release/ugrep.exe"
OutputFile=".\Release/ugrep.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
ProgramDatabaseFile=".\x86\Release/ugrep.pdb"
ProgramDatabaseFile=".\Release/ugrep.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -131,7 +131,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/ugrep.tlb"
TypeLibraryName=".\Debug/ugrep.tlb"
HeaderFileName=""
/>
<Tool
@ -143,10 +143,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/ugrep.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/ugrep.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -166,11 +166,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib"
OutputFile=".\x86\Debug/ugrep.exe"
OutputFile=".\Debug/ugrep.exe"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/ugrep.pdb"
ProgramDatabaseFile=".\Debug/ugrep.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/uresb.tlb"
TypeLibraryName=".\Release/uresb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/uresb.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/uresb.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuio.lib icutu.lib"
OutputFile=".\x86\Release/uresb.exe"
OutputFile=".\Release/uresb.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib/,../../tools/toolutil/"
ProgramDatabaseFile=".\x86\Release/uresb.pdb"
ProgramDatabaseFile=".\Release/uresb.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/uresb.tlb"
TypeLibraryName=".\Debug/uresb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/uresb.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/uresb.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuiod.lib icutud.lib"
OutputFile=".\x86\Debug/uresb.exe"
OutputFile=".\Debug/uresb.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="../../../lib/,../../tools/toolutil/"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/uresb.pdb"
ProgramDatabaseFile=".\Debug/uresb.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/ustring.tlb"
TypeLibraryName=".\Release/ustring.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/ustring.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/ustring.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib"
OutputFile=".\x86\Release/ustring.exe"
OutputFile=".\Release/ustring.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/ustring.pdb"
ProgramDatabaseFile=".\Release/ustring.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/ustring.tlb"
TypeLibraryName=".\Debug/ustring.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/ustring.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/ustring.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib"
OutputFile=".\x86\Debug/ustring.exe"
OutputFile=".\Debug/ustring.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/ustring.pdb"
ProgramDatabaseFile=".\Debug/ustring.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -41,7 +41,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Release\icudt.tlb"
TypeLibraryName=".\Release\icudt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -53,10 +53,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release\stubdata.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release\stubdata.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -80,7 +80,7 @@
SuppressStartupBanner="true"
GenerateManifest="false"
IgnoreAllDefaultLibraries="true"
ProgramDatabaseFile=".\x86\Release\icudt.pdb"
ProgramDatabaseFile=".\Release\icudt.pdb"
ResourceOnlyDLL="true"
SetChecksum="true"
BaseAddress="0x4ad00000"
@ -114,8 +114,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -140,7 +140,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Debug/icudt.tlb"
TypeLibraryName=".\Debug/icudt.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -152,10 +152,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/stubdata.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/stubdata.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -177,7 +177,7 @@
OutputFile="..\..\bin\icudt40.dll"
SuppressStartupBanner="true"
GenerateManifest="false"
ProgramDatabaseFile=".\x86\Debug/icudt.pdb"
ProgramDatabaseFile=".\Debug/icudt.pdb"
ResourceOnlyDLL="true"
SetChecksum="true"
BaseAddress="0x4ad00000"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/cintltst.tlb"
TypeLibraryName=".\Debug/cintltst.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/cintltst.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/cintltst.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -72,11 +72,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/cintltst.exe"
OutputFile=".\Debug/cintltst.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/cintltst.pdb"
ProgramDatabaseFile=".\Debug/cintltst.pdb"
SubSystem="1"
FixedBaseAddress="1"
/>
@ -108,8 +108,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -130,7 +130,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/cintltst.tlb"
TypeLibraryName=".\Release/cintltst.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -142,10 +142,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/cintltst.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/cintltst.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/cintltst.exe"
OutputFile=".\Release/cintltst.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Release/cintltst.pdb"
ProgramDatabaseFile=".\Release/cintltst.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,8 +16,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -38,7 +38,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/intltest.tlb"
TypeLibraryName=".\Debug/intltest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/intltest.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/intltest.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -73,11 +73,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/intltest.exe"
OutputFile=".\Debug/intltest.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/intltest.pdb"
ProgramDatabaseFile=".\Debug/intltest.pdb"
SubSystem="1"
FixedBaseAddress="1"
/>
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -131,7 +131,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/intltest.tlb"
TypeLibraryName=".\Release/intltest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -141,10 +141,10 @@
RuntimeLibrary="0"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/intltest.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/intltest.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/intltest.exe"
OutputFile=".\Release/intltest.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Release/intltest.pdb"
ProgramDatabaseFile=".\Release/intltest.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/iotest.tlb"
TypeLibraryName=".\Debug/iotest.tlb"
HeaderFileName=""
/>
<Tool
@ -50,10 +50,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/iotest.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/iotest.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -73,11 +73,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/iotest.exe"
OutputFile=".\Debug/iotest.exe"
LinkIncremental="0"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/iotest.pdb"
ProgramDatabaseFile=".\Debug/iotest.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -131,7 +131,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/iotest.tlb"
TypeLibraryName=".\Release/iotest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -141,10 +141,10 @@
RuntimeLibrary="2"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/iotest.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/iotest.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,10 +162,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/iotest.exe"
OutputFile=".\Release/iotest.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/iotest.pdb"
ProgramDatabaseFile=".\Release/iotest.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gendata.tlb"
TypeLibraryName=".\Debug/gendata.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -48,10 +48,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/gendata.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gendata.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="..\..\..\lib\iculed.lib ..\..\..\lib\icuucd.lib ..\..\..\lib\icutud.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Debug/gendata.exe"
OutputFile=".\Debug/gendata.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gendata.pdb"
ProgramDatabaseFile=".\Debug/gendata.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gendata.tlb"
TypeLibraryName=".\Release/gendata.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -139,10 +139,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/gendata.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gendata.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -161,10 +161,10 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="..\..\..\lib\icule.lib ..\..\..\lib\icuuc.lib ..\..\..\lib\icutu.lib odbc32.lib odbccp32.lib"
OutputFile=".\x86\Release/gendata.exe"
OutputFile=".\Release/gendata.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gendata.pdb"
ProgramDatabaseFile=".\Release/gendata.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/letest.tlb"
TypeLibraryName=".\Release/letest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/letest.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/letest.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -70,10 +70,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/letest.exe"
OutputFile=".\Release/letest.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/letest.pdb"
ProgramDatabaseFile=".\Release/letest.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -125,7 +125,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/letest.tlb"
TypeLibraryName=".\Debug/letest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -136,10 +136,10 @@
RuntimeLibrary="1"
TreatWChar_tAsBuiltInType="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/letest.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/letest.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -158,12 +158,12 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/letest.exe"
OutputFile=".\Debug/letest.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalLibraryDirectories=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/letest.pdb"
ProgramDatabaseFile=".\Debug/letest.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/charperf.tlb"
TypeLibraryName=".\Debug/charperf.tlb"
HeaderFileName=""
/>
<Tool
@ -48,10 +48,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/charperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/charperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -72,12 +72,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib winmm.lib"
OutputFile=".\x86\Debug/charperf.exe"
OutputFile=".\Debug/charperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/charperf.pdb"
ProgramDatabaseFile=".\Debug/charperf.pdb"
SubSystem="1"
/>
<Tool
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/charperf.tlb"
TypeLibraryName=".\Release/charperf.tlb"
HeaderFileName=""
/>
<Tool
@ -142,10 +142,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/charperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/charperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -164,11 +164,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/charperf.exe"
OutputFile=".\Release/charperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/charperf.pdb"
ProgramDatabaseFile=".\Release/charperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/collperf.tlb"
TypeLibraryName=".\Debug/collperf.tlb"
HeaderFileName=""
/>
<Tool
@ -47,10 +47,10 @@
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
PrecompiledHeaderFile=".\x86\Debug/collperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/collperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib icutud.lib winmm.lib icutestd.lib"
OutputFile=".\x86\Debug/collperf.exe"
OutputFile=".\Debug/collperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/collperf.pdb"
ProgramDatabaseFile=".\Debug/collperf.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/collperf.tlb"
TypeLibraryName=".\Release/collperf.tlb"
HeaderFileName=""
/>
<Tool
@ -140,10 +140,10 @@
StringPooling="true"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\x86\Release/collperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/collperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icuin.lib icutest.lib icutu.lib winmm.lib"
OutputFile=".\x86\Release/collperf.exe"
OutputFile=".\Release/collperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/collperf.pdb"
ProgramDatabaseFile=".\Release/collperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/convperf.tlb"
TypeLibraryName=".\Release/convperf.tlb"
HeaderFileName=""
/>
<Tool
@ -50,10 +50,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/convperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/convperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -72,11 +72,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib"
OutputFile=".\x86\Release/convperf.exe"
OutputFile=".\Release/convperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/convperf.pdb"
ProgramDatabaseFile=".\Release/convperf.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/convperf.tlb"
TypeLibraryName=".\Debug/convperf.tlb"
HeaderFileName=""
/>
<Tool
@ -140,10 +140,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/convperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/convperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -164,12 +164,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib"
OutputFile=".\x86\Debug/convperf.exe"
OutputFile=".\Debug/convperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/convperf.pdb"
ProgramDatabaseFile=".\Debug/convperf.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/normperf.tlb"
TypeLibraryName=".\Debug/normperf.tlb"
HeaderFileName=""
/>
<Tool
@ -48,10 +48,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/normperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/normperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -72,12 +72,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib winmm.lib"
OutputFile=".\x86\Debug/normperf.exe"
OutputFile=".\Debug/normperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/normperf.pdb"
ProgramDatabaseFile=".\Debug/normperf.pdb"
SubSystem="1"
/>
<Tool
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/normperf.tlb"
TypeLibraryName=".\Release/normperf.tlb"
HeaderFileName=""
/>
<Tool
@ -142,10 +142,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/normperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/normperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -164,11 +164,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/normperf.exe"
OutputFile=".\Release/normperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/normperf.pdb"
ProgramDatabaseFile=".\Release/normperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/strsrchperf.tlb"
TypeLibraryName=".\Debug/strsrchperf.tlb"
HeaderFileName=""
/>
<Tool
@ -48,10 +48,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/strsrchperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/strsrchperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -72,12 +72,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib winmm.lib"
OutputFile=".\x86\Debug/strsrchperf.exe"
OutputFile=".\Debug/strsrchperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/strsrchperf.pdb"
ProgramDatabaseFile=".\Debug/strsrchperf.pdb"
SubSystem="1"
/>
<Tool
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/strsrchperf.tlb"
TypeLibraryName=".\Release/strsrchperf.tlb"
HeaderFileName=""
/>
<Tool
@ -142,10 +142,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/strsrchperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/strsrchperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -164,11 +164,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/strsrchperf.exe"
OutputFile=".\Release/strsrchperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/strsrchperf.pdb"
ProgramDatabaseFile=".\Release/strsrchperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/ubrkperf.tlb"
TypeLibraryName=".\Debug/ubrkperf.tlb"
HeaderFileName=""
/>
<Tool
@ -47,10 +47,10 @@
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
PrecompiledHeaderFile=".\x86\Debug/ubrkperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/ubrkperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -71,12 +71,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib winmm.lib"
OutputFile=".\x86\Debug/ubrkperf.exe"
OutputFile=".\Debug/ubrkperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/ubrkperf.pdb"
ProgramDatabaseFile=".\Debug/ubrkperf.pdb"
SubSystem="1"
/>
<Tool
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/ubrkperf.tlb"
TypeLibraryName=".\Release/ubrkperf.tlb"
HeaderFileName=""
/>
<Tool
@ -140,10 +140,10 @@
StringPooling="true"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\x86\Release/ubrkperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/ubrkperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -166,7 +166,7 @@
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/ubrkperf24.pdb"
ProgramDatabaseFile=".\Release/ubrkperf24.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/unisetperf.tlb"
TypeLibraryName=".\Debug/unisetperf.tlb"
HeaderFileName=""
/>
<Tool
@ -47,10 +47,10 @@
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
PrecompiledHeaderFile=".\x86\Debug/unisetperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/unisetperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -70,12 +70,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib winmm.lib icutestd.lib"
OutputFile=".\x86\Debug/unisetperf.exe"
OutputFile=".\Debug/unisetperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/unisetperf.pdb"
ProgramDatabaseFile=".\Debug/unisetperf.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/unisetperf.tlb"
TypeLibraryName=".\Release/unisetperf.tlb"
HeaderFileName=""
/>
<Tool
@ -140,10 +140,10 @@
StringPooling="true"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\x86\Release/unisetperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/unisetperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -162,11 +162,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/unisetperf.exe"
OutputFile=".\Release/unisetperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/unisetperf.pdb"
ProgramDatabaseFile=".\Release/unisetperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/usetperf.tlb"
TypeLibraryName=".\Release/usetperf.tlb"
HeaderFileName=""
/>
<Tool
@ -49,10 +49,10 @@
StringPooling="true"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\x86\Release/usetperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/usetperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib winmm.lib icutest.lib"
OutputFile=".\x86\Release/usetperf.exe"
OutputFile=".\Release/usetperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib"
ProgramDatabaseFile=".\x86\Release/usetperf.pdb"
ProgramDatabaseFile=".\Release/usetperf.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -106,8 +106,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/usetperf.tlb"
TypeLibraryName=".\Debug/usetperf.tlb"
HeaderFileName=""
/>
<Tool
@ -138,10 +138,10 @@
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
PrecompiledHeaderFile=".\x86\Debug/usetperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/usetperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="3"
@ -161,12 +161,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib winmm.lib icutestd.lib"
OutputFile=".\x86\Debug/usetperf.exe"
OutputFile=".\Debug/usetperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/usetperf.pdb"
ProgramDatabaseFile=".\Debug/usetperf.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/stringperf.tlb"
TypeLibraryName=".\Release/stringperf.tlb"
HeaderFileName=""
/>
<Tool
@ -50,10 +50,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Release/stringperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/stringperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -72,11 +72,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/stringperf.exe"
OutputFile=".\Release/stringperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/stringperf.pdb"
ProgramDatabaseFile=".\Release/stringperf.pdb"
SubSystem="1"
TargetMachine="1"
/>
@ -107,8 +107,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -129,7 +129,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/stringperf.tlb"
TypeLibraryName=".\Debug/stringperf.tlb"
HeaderFileName=""
/>
<Tool
@ -140,10 +140,10 @@
BasicRuntimeChecks="3"
RuntimeLibrary="3"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/stringperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/stringperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -164,12 +164,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib icutestd.lib winmm.lib"
OutputFile=".\x86\Debug/stringperf.exe"
OutputFile=".\Debug/stringperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/stringperf.pdb"
ProgramDatabaseFile=".\Debug/stringperf.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -37,7 +37,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/utfperf.tlb"
TypeLibraryName=".\Debug/utfperf.tlb"
HeaderFileName=""
/>
<Tool
@ -47,10 +47,10 @@
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
PrecompiledHeaderFile=".\x86\Debug/utfperf.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/utfperf.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="3"
@ -70,12 +70,12 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icutud.lib winmm.lib icutestd.lib"
OutputFile=".\x86\Debug/utfperf.exe"
OutputFile=".\Debug/utfperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/utfperf.pdb"
ProgramDatabaseFile=".\Debug/utfperf.pdb"
SubSystem="1"
/>
<Tool
@ -105,8 +105,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/utfperf.tlb"
TypeLibraryName=".\Release/utfperf.tlb"
HeaderFileName=""
/>
<Tool
@ -139,10 +139,10 @@
StringPooling="true"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\x86\Release/utfperf.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/utfperf.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -161,11 +161,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuuc.lib icutu.lib icutest.lib winmm.lib"
OutputFile=".\x86\Release/utfperf.exe"
OutputFile=".\Release/utfperf.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\lib\"
ProgramDatabaseFile=".\x86\Release/utfperf.pdb"
ProgramDatabaseFile=".\Release/utfperf.pdb"
SubSystem="1"
TargetMachine="1"
/>

View File

@ -33,7 +33,7 @@ TEST_RES_FILES = $(TEST_RES_SOURCE:.txt=.res)
@copy "$(TESTDATABLD)\te.res" "$(TESTDATAOUT)\$(TESTDT)\nam.typ"
@copy "$(TESTDATA)\icu26_testtypes.res" "$(TESTDATABLD)"
@copy "$(TESTDATA)\icu26e_testtypes.res" "$(TESTDATABLD)"
"$(ICUPBIN)\pkgdata" -f -v -m common -c -p"$(TESTPKG)" -d "$(TESTDATAOUT)" -T "$(TESTDATABLD)" -s "$(TESTDATABLD)" <<
"$(ICUP)\bin\pkgdata" -f -v -m common -c -p"$(TESTPKG)" -d "$(TESTDATAOUT)" -T "$(TESTDATABLD)" -s "$(TESTDATABLD)" <<
casing.res
conversion.res
mc.res

View File

@ -16,7 +16,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -53,10 +53,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/icutest.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/icutest.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -110,7 +110,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -147,10 +147,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/icutest.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/icutest.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genbidi.tlb"
TypeLibraryName=".\Release/genbidi.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genbidi.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genbidi.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genbidi.exe"
OutputFile=".\Release/genbidi.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genbidi.pdb"
ProgramDatabaseFile=".\Release/genbidi.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genbidi.tlb"
TypeLibraryName=".\Debug/genbidi.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genbidi.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genbidi.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genbidi.exe"
OutputFile=".\Debug/genbidi.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genbidi.pdb"
ProgramDatabaseFile=".\Debug/genbidi.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genbrk.tlb"
TypeLibraryName=".\Release/genbrk.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genbrk.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genbrk.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genbrk.exe"
OutputFile=".\Release/genbrk.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genbrk.pdb"
ProgramDatabaseFile=".\Release/genbrk.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genbrk.tlb"
TypeLibraryName=".\Debug/genbrk.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genbrk.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genbrk.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genbrk.exe"
OutputFile=".\Debug/genbrk.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genbrk.pdb"
ProgramDatabaseFile=".\Debug/genbrk.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gencase.tlb"
TypeLibraryName=".\Release/gencase.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gencase.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gencase.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gencase.exe"
OutputFile=".\Release/gencase.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gencase.pdb"
ProgramDatabaseFile=".\Release/gencase.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gencase.tlb"
TypeLibraryName=".\Debug/gencase.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gencase.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gencase.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gencase.exe"
OutputFile=".\Debug/gencase.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gencase.pdb"
ProgramDatabaseFile=".\Debug/gencase.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genccode.tlb"
TypeLibraryName=".\Release/genccode.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genccode.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genccode.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -70,10 +70,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genccode.exe"
OutputFile=".\Release/genccode.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genccode.pdb"
ProgramDatabaseFile=".\Release/genccode.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genccode.tlb"
TypeLibraryName=".\Debug/genccode.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
BufferSecurityCheck="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genccode.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genccode.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -161,11 +161,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genccode.exe"
OutputFile=".\Debug/genccode.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genccode.pdb"
ProgramDatabaseFile=".\Debug/genccode.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gencmn.tlb"
TypeLibraryName=".\Release/gencmn.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gencmn.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gencmn.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gencmn.exe"
OutputFile=".\Release/gencmn.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gencmn.pdb"
ProgramDatabaseFile=".\Release/gencmn.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gencmn.tlb"
TypeLibraryName=".\Debug/gencmn.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gencmn.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gencmn.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gencmn.exe"
OutputFile=".\Debug/gencmn.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gencmn.pdb"
ProgramDatabaseFile=".\Debug/gencmn.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gencnval.tlb"
TypeLibraryName=".\Release/gencnval.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gencnval.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gencnval.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gencnval.exe"
OutputFile=".\Release/gencnval.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gencnval.pdb"
ProgramDatabaseFile=".\Release/gencnval.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gencnval.tlb"
TypeLibraryName=".\Debug/gencnval.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gencnval.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gencnval.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gencnval.exe"
OutputFile=".\Debug/gencnval.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gencnval.pdb"
ProgramDatabaseFile=".\Debug/gencnval.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genctd.tlb"
TypeLibraryName=".\Release/genctd.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genctd.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genctd.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genctd.exe"
OutputFile=".\Release/genctd.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genctd.pdb"
ProgramDatabaseFile=".\Release/genctd.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genctd.tlb"
TypeLibraryName=".\Debug/genctd.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genctd.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genctd.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genctd.exe"
OutputFile=".\Debug/genctd.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genctd.pdb"
ProgramDatabaseFile=".\Debug/genctd.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gennames.tlb"
TypeLibraryName=".\Release/gennames.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gennames.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gennames.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gennames.exe"
OutputFile=".\Release/gennames.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gennames.pdb"
ProgramDatabaseFile=".\Release/gennames.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gennames.tlb"
TypeLibraryName=".\Debug/gennames.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gennames.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gennames.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gennames.exe"
OutputFile=".\Debug/gennames.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gennames.pdb"
ProgramDatabaseFile=".\Debug/gennames.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gennorm.tlb"
TypeLibraryName=".\Release/gennorm.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gennorm.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gennorm.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gennorm.exe"
OutputFile=".\Release/gennorm.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gennorm.pdb"
ProgramDatabaseFile=".\Release/gennorm.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gennorm.tlb"
TypeLibraryName=".\Debug/gennorm.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gennorm.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gennorm.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gennorm.exe"
OutputFile=".\Debug/gennorm.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gennorm.pdb"
ProgramDatabaseFile=".\Debug/gennorm.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genpname.tlb"
TypeLibraryName=".\Release/genpname.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genpname.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genpname.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genpname.exe"
OutputFile=".\Release/genpname.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genpname.pdb"
ProgramDatabaseFile=".\Release/genpname.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genpname.tlb"
TypeLibraryName=".\Debug/genpname.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genpname.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genpname.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genpname.exe"
OutputFile=".\Debug/genpname.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genpname.pdb"
ProgramDatabaseFile=".\Debug/genpname.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genprops.tlb"
TypeLibraryName=".\Release/genprops.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genprops.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genprops.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genprops.exe"
OutputFile=".\Release/genprops.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genprops.pdb"
ProgramDatabaseFile=".\Release/genprops.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genprops.tlb"
TypeLibraryName=".\Debug/genprops.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genprops.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genprops.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -163,11 +163,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genprops.exe"
OutputFile=".\Debug/genprops.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genprops.pdb"
ProgramDatabaseFile=".\Debug/genprops.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release_derb"
IntermediateDirectory=".\x86\Release_derb"
OutputDirectory=".\derb_Win32_Release"
IntermediateDirectory=".\derb_Win32_Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -43,7 +43,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Release_derb/derb.tlb"
TypeLibraryName=".\derb_Win32_Release/derb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -54,10 +54,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release_derb/derb.pch"
AssemblerListingLocation=".\x86\Release_derb/"
ObjectFile=".\x86\Release_derb/"
ProgramDataBaseFileName=".\x86\Release_derb/"
PrecompiledHeaderFile=".\derb_Win32_Release/derb.pch"
AssemblerListingLocation=".\derb_Win32_Release/"
ObjectFile=".\derb_Win32_Release/"
ProgramDataBaseFileName=".\derb_Win32_Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -75,10 +75,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release_derb/derb.exe"
OutputFile=".\derb_Win32_Release/derb.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release_derb/derb.pdb"
ProgramDatabaseFile=".\derb_Win32_Release/derb.pdb"
SubSystem="1"
/>
<Tool
@ -108,8 +108,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug_derb"
IntermediateDirectory=".\x86\Debug_derb"
OutputDirectory=".\derb_Win32_Debug"
IntermediateDirectory=".\derb_Win32_Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -136,7 +136,7 @@
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\x86\Debug_derb/derb.tlb"
TypeLibraryName=".\derb_Win32_Debug/derb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -148,10 +148,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug_derb/derb.pch"
AssemblerListingLocation=".\x86\Debug_derb/"
ObjectFile=".\x86\Debug_derb/"
ProgramDataBaseFileName=".\x86\Debug_derb/"
PrecompiledHeaderFile=".\derb_Win32_Debug/derb.pch"
AssemblerListingLocation=".\derb_Win32_Debug/"
ObjectFile=".\derb_Win32_Debug/"
ProgramDataBaseFileName=".\derb_Win32_Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -170,11 +170,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug_derb/derb.exe"
OutputFile=".\derb_Win32_Debug/derb.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug_derb/derb.pdb"
ProgramDatabaseFile=".\derb_Win32_Debug/derb.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genrb.tlb"
TypeLibraryName=".\Release/genrb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
RuntimeLibrary="2"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genrb.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genrb.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -70,10 +70,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genrb.exe"
OutputFile=".\Release/genrb.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genrb.pdb"
ProgramDatabaseFile=".\Release/genrb.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genrb.tlb"
TypeLibraryName=".\Debug/genrb.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -139,10 +139,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genrb.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genrb.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -162,11 +162,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genrb.exe"
OutputFile=".\Debug/genrb.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genrb.pdb"
ProgramDatabaseFile=".\Debug/genrb.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gensprep.tlb"
TypeLibraryName=".\Release/gensprep.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gensprep.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gensprep.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -71,10 +71,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gensprep.exe"
OutputFile=".\Release/gensprep.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gensprep.pdb"
ProgramDatabaseFile=".\Release/gensprep.pdb"
SubSystem="1"
/>
<Tool
@ -104,8 +104,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -128,7 +128,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gensprep.tlb"
TypeLibraryName=".\Debug/gensprep.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -140,10 +140,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gensprep.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gensprep.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
@ -162,11 +162,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gensprep.exe"
OutputFile=".\Debug/gensprep.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gensprep.pdb"
ProgramDatabaseFile=".\Debug/gensprep.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,8 +16,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -38,7 +38,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/gentest.tlb"
TypeLibraryName=".\Release/gentest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/gentest.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/gentest.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -70,10 +70,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/gentest.exe"
OutputFile=".\Release/gentest.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/gentest.pdb"
ProgramDatabaseFile=".\Release/gentest.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -125,7 +125,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/gentest.tlb"
TypeLibraryName=".\Debug/gentest.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -137,10 +137,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/gentest.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/gentest.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -160,11 +160,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/gentest.exe"
OutputFile=".\Debug/gentest.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/gentest.pdb"
ProgramDatabaseFile=".\Debug/gentest.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/genuca.tlb"
TypeLibraryName=".\Debug/genuca.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -51,10 +51,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/genuca.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/genuca.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -74,11 +74,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/genuca.exe"
OutputFile=".\Debug/genuca.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/genuca.pdb"
ProgramDatabaseFile=".\Debug/genuca.pdb"
SubSystem="1"
/>
<Tool
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -133,7 +133,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/genuca.tlb"
TypeLibraryName=".\Release/genuca.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -144,10 +144,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/genuca.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/genuca.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -165,10 +165,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/genuca.exe"
OutputFile=".\Release/genuca.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/genuca.pdb"
ProgramDatabaseFile=".\Release/genuca.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,8 +16,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory="x86\Release"
IntermediateDirectory="x86\Release"
OutputDirectory="Release"
IntermediateDirectory="Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -50,10 +50,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile="x86\/icupkg.pch"
AssemblerListingLocation="x86\/"
ObjectFile="x86\/"
ProgramDataBaseFileName="x86\/"
PrecompiledHeaderFile="Release/icupkg.pch"
AssemblerListingLocation="Release/"
ObjectFile="Release/"
ProgramDataBaseFileName="Release/"
WarningLevel="4"
SuppressStartupBanner="true"
CompileAs="0"
@ -73,7 +73,7 @@
OutputFile="$(OutDir)/icupkg.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile="x86\/icupkg.pdb"
ProgramDatabaseFile="Release/icupkg.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory="x86\Debug"
IntermediateDirectory="x86\Debug"
OutputDirectory="Debug"
IntermediateDirectory="Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/icuswap.tlb"
TypeLibraryName=".\Release/icuswap.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -49,10 +49,10 @@
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
PrecompiledHeaderFile=".\x86\Release/icuswap.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/icuswap.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="4"
SuppressStartupBanner="true"
CompileAs="0"
@ -70,10 +70,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/icuswap.exe"
OutputFile=".\Release/icuswap.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/icuswap.pdb"
ProgramDatabaseFile=".\Release/icuswap.pdb"
SubSystem="1"
/>
<Tool
@ -103,8 +103,8 @@
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -127,7 +127,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/icuswap.tlb"
TypeLibraryName=".\Debug/icuswap.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -138,10 +138,10 @@
RuntimeLibrary="3"
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
PrecompiledHeaderFile=".\x86\Debug/icuswap.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/icuswap.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="4"
SuppressStartupBanner="true"
@ -161,11 +161,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/icuswap.exe"
OutputFile=".\Debug/icuswap.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/icuswap.pdb"
ProgramDatabaseFile=".\Debug/icuswap.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/makeconv.tlb"
TypeLibraryName=".\Debug/makeconv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -51,10 +51,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/makeconv.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/makeconv.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -74,11 +74,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/makeconv.exe"
OutputFile=".\Debug/makeconv.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/makeconv.pdb"
ProgramDatabaseFile=".\Debug/makeconv.pdb"
SubSystem="1"
/>
<Tool
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -133,7 +133,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/makeconv.tlb"
TypeLibraryName=".\Release/makeconv.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -143,10 +143,10 @@
RuntimeLibrary="2"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/makeconv.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/makeconv.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -164,10 +164,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/makeconv.exe"
OutputFile=".\Release/makeconv.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/makeconv.pdb"
ProgramDatabaseFile=".\Release/makeconv.pdb"
SubSystem="1"
/>
<Tool

View File

@ -15,8 +15,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -39,7 +39,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Debug/pkgdata.tlb"
TypeLibraryName=".\Debug/pkgdata.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -51,10 +51,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/pkgdata.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/pkgdata.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
@ -74,11 +74,11 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Debug/pkgdata.exe"
OutputFile=".\Debug/pkgdata.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/pkgdata.pdb"
ProgramDatabaseFile=".\Debug/pkgdata.pdb"
SubSystem="1"
/>
<Tool
@ -109,8 +109,8 @@
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\x86\Release"
IntermediateDirectory=".\x86\Release"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -133,7 +133,7 @@
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\x86\Release/pkgdata.tlb"
TypeLibraryName=".\Release/pkgdata.tlb"
/>
<Tool
Name="VCCLCompilerTool"
@ -144,10 +144,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/pkgdata.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/pkgdata.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -165,10 +165,10 @@
/>
<Tool
Name="VCLinkerTool"
OutputFile=".\x86\Release/pkgdata.exe"
OutputFile=".\Release/pkgdata.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\x86\Release/pkgdata.pdb"
ProgramDatabaseFile=".\Release/pkgdata.pdb"
SubSystem="1"
/>
<Tool

View File

@ -16,7 +16,7 @@
<Configuration
Name="Release|Win32"
OutputDirectory=".\..\..\..\lib"
IntermediateDirectory=".\x86\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -53,10 +53,10 @@
EnableFunctionLevelLinking="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Release/toolutil.pch"
AssemblerListingLocation=".\x86\Release/"
ObjectFile=".\x86\Release/"
ProgramDataBaseFileName=".\x86\Release/"
PrecompiledHeaderFile=".\Release/toolutil.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
CompileAs="0"
@ -112,7 +112,7 @@
<Configuration
Name="Debug|Win32"
OutputDirectory=".\..\..\..\lib"
IntermediateDirectory=".\x86\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="0"
@ -149,10 +149,10 @@
BufferSecurityCheck="true"
DisableLanguageExtensions="true"
TreatWChar_tAsBuiltInType="true"
PrecompiledHeaderFile=".\x86\Debug/toolutil.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/toolutil.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"

View File

@ -17,8 +17,8 @@
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\x86\Debug"
IntermediateDirectory=".\x86\Debug"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
CharacterSet="1"
>
@ -49,10 +49,10 @@
RuntimeLibrary="3"
DisableLanguageExtensions="true"
UsePrecompiledHeader="0"
PrecompiledHeaderFile=".\x86\Debug/icuzdump.pch"
AssemblerListingLocation=".\x86\Debug/"
ObjectFile=".\x86\Debug/"
ProgramDataBaseFileName=".\x86\Debug/"
PrecompiledHeaderFile=".\Debug/icuzdump.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
Detect64BitPortabilityProblems="false"
@ -71,11 +71,11 @@
<Tool
Name="VCLinkerTool"
AdditionalDependencies="icuucd.lib icuind.lib icutud.lib icuiod.lib"
OutputFile=".\x86\Debug/icuzdump.exe"
OutputFile=".\Debug/icuzdump.exe"
LinkIncremental="2"
AdditionalLibraryDirectories="..\..\..\lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\x86\Debug/icuzdump.pdb"
ProgramDatabaseFile=".\Debug/icuzdump.pdb"
SubSystem="1"
TargetMachine="0"
/>