1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup Label="Globals"> 4 <ProjectGuid>{97521D06-EC47-45D4-8BD0-9E16B3F93B2A}</ProjectGuid> 5 </PropertyGroup> 6 <PropertyGroup Label="Configuration"> 7 <ConfigurationType>Application</ConfigurationType> 8 <UseOfMfc>false</UseOfMfc> 9 <CharacterSet>MultiByte</CharacterSet> 10 </PropertyGroup> 11 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 12 <!-- The following import will include the 'default' configuration options for VS projects. --> 13 <Import Project="..\..\allinone\Build.Windows.ProjectConfiguration.props" /> 14 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 15 <ImportGroup Label="ExtensionSettings"> 16 </ImportGroup> 17 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 18 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 19 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 20 </ImportGroup> 21 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 22 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 23 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 24 </ImportGroup> 25 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 26 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 27 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 28 </ImportGroup> 29 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 30 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 31 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 32 </ImportGroup> 33 <PropertyGroup Label="UserMacros" /> 34 <PropertyGroup> 35 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 36 <OutDir>.\$(Platform)\$(Configuration)\</OutDir> 37 <IntDir>.\$(Platform)\$(Configuration)\</IntDir> 38 <!-- The ICU projects use "Win32" to mean "x86", so we need to special case it. --> 39 <OutDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</OutDir> 40 <IntDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</IntDir> 41 <!-- Disable Incremental Linking for Release builds as it prevents Link-time Code Generation --> 42 <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> 43 <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> 44 </PropertyGroup> 45 <!-- Options that are common to *all* configurations --> 46 <ItemDefinitionGroup> 47 <Midl> 48 <TypeLibraryName>$(OutDir)/genrb.tlb</TypeLibraryName> 49 </Midl> 50 <ClCompile> 51 <WarningLevel>Level3</WarningLevel> 52 <CompileAs>Default</CompileAs> 53 <DisableLanguageExtensions>true</DisableLanguageExtensions> 54 <AdditionalIncludeDirectories>..\..\..\include;..\..\common;..\toolutil;..\..\i18n;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 55 <PrecompiledHeaderOutputFile>$(OutDir)/genrb.pch</PrecompiledHeaderOutputFile> 56 <AssemblerListingLocation>$(OutDir)/</AssemblerListingLocation> 57 <ObjectFileName>$(OutDir)/</ObjectFileName> 58 <ProgramDataBaseFileName>$(OutDir)/genrb.pdb</ProgramDataBaseFileName> 59 </ClCompile> 60 <Link> 61 <SubSystem>Console</SubSystem> 62 <OutputFile>$(OutDir)/genrb.exe</OutputFile> 63 <AdditionalLibraryDirectories>..\..\..\$(IcuLibOutputDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 64 </Link> 65 <CustomBuildStep> 66 <Command>copy "$(TargetPath)" ..\..\..\$(IcuBinOutputDir)</Command> 67 <Outputs>..\..\..\$(IcuBinOutputDir)\$(TargetFileName);%(Outputs)</Outputs> 68 </CustomBuildStep> 69 </ItemDefinitionGroup> 70 <!-- Options that are common to all 'Debug' project configurations --> 71 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 72 <ClCompile> 73 <BrowseInformation>true</BrowseInformation> 74 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 75 </ClCompile> 76 <Link> 77 <AdditionalDependencies>icuucd.lib;icuind.lib;icutud.lib;%(AdditionalDependencies)</AdditionalDependencies> 78 </Link> 79 </ItemDefinitionGroup> 80 <!-- Options that are common to all 'Release' project configurations --> 81 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 82 <ClCompile> 83 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 84 <FunctionLevelLinking>true</FunctionLevelLinking> 85 </ClCompile> 86 <Link> 87 <AdditionalDependencies>icuuc.lib;icuin.lib;icutu.lib;%(AdditionalDependencies)</AdditionalDependencies> 88 </Link> 89 </ItemDefinitionGroup> 90 <ItemGroup> 91 <ClCompile Include="errmsg.c" /> 92 <ClCompile Include="filterrb.cpp" /> 93 <ClCompile Include="genrb.cpp" /> 94 <ClCompile Include="parse.cpp"> 95 <DisableLanguageExtensions>false</DisableLanguageExtensions> 96 </ClCompile> 97 <ClCompile Include="prscmnts.cpp"> 98 <DisableLanguageExtensions>false</DisableLanguageExtensions> 99 </ClCompile> 100 <ClCompile Include="rbutil.c" /> 101 <ClCompile Include="read.c" /> 102 <ClCompile Include="reslist.cpp"> 103 <DisableLanguageExtensions>false</DisableLanguageExtensions> 104 </ClCompile> 105 <ClCompile Include="rle.c" /> 106 <ClCompile Include="ustr.c" /> 107 <ClCompile Include="wrtjava.cpp"> 108 <DisableLanguageExtensions>false</DisableLanguageExtensions> 109 </ClCompile> 110 <ClCompile Include="wrtxml.cpp"> 111 <DisableLanguageExtensions>false</DisableLanguageExtensions> 112 </ClCompile> 113 </ItemGroup> 114 <ItemGroup> 115 <ClInclude Include="errmsg.h" /> 116 <ClInclude Include="genrb.h" /> 117 <ClInclude Include="filterrb.h" /> 118 <ClInclude Include="parse.h" /> 119 <ClInclude Include="prscmnts.h" /> 120 <ClInclude Include="rbutil.h" /> 121 <ClInclude Include="read.h" /> 122 <ClInclude Include="reslist.h" /> 123 <ClInclude Include="rle.h" /> 124 <ClInclude Include="ustr.h" /> 125 </ItemGroup> 126 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 127 <ImportGroup Label="ExtensionTargets"> 128 </ImportGroup> 129</Project>