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 <PropertyGroup Label="UserMacros" /> 18 <PropertyGroup> 19 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 20 <OutDir>.\$(Platform)\$(Configuration)\</OutDir> 21 <IntDir>.\$(Platform)\$(Configuration)\</IntDir> 22 <!-- The ICU projects use "Win32" to mean "x86", so we need to special case it. --> 23 <OutDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</OutDir> 24 <IntDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</IntDir> 25 <!-- Disable Incremental Linking for Release builds as it prevents Link-time Code Generation --> 26 <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> 27 <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> 28 </PropertyGroup> 29 <!-- Options that are common to *all* configurations --> 30 <ItemDefinitionGroup> 31 <Midl> 32 <TypeLibraryName>$(OutDir)/genrb.tlb</TypeLibraryName> 33 </Midl> 34 <ClCompile> 35 <WarningLevel>Level3</WarningLevel> 36 <CompileAs>Default</CompileAs> 37 <DisableLanguageExtensions>true</DisableLanguageExtensions> 38 <AdditionalIncludeDirectories>..\..\..\include;..\..\common;..\toolutil;..\..\i18n;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 39 <PrecompiledHeaderOutputFile>$(OutDir)/genrb.pch</PrecompiledHeaderOutputFile> 40 <AssemblerListingLocation>$(OutDir)/</AssemblerListingLocation> 41 <ObjectFileName>$(OutDir)/</ObjectFileName> 42 <ProgramDataBaseFileName>$(OutDir)/genrb.pdb</ProgramDataBaseFileName> 43 </ClCompile> 44 <Link> 45 <SubSystem>Console</SubSystem> 46 <OutputFile>$(OutDir)/genrb.exe</OutputFile> 47 <AdditionalLibraryDirectories>..\..\..\$(IcuLibOutputDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 48 </Link> 49 <CustomBuildStep> 50 <Command>copy "$(TargetPath)" ..\..\..\$(IcuBinOutputDir)</Command> 51 <Outputs>..\..\..\$(IcuBinOutputDir)\$(TargetFileName);%(Outputs)</Outputs> 52 </CustomBuildStep> 53 </ItemDefinitionGroup> 54 <!-- Options that are common to all 'Debug' project configurations --> 55 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 56 <ClCompile> 57 <BrowseInformation>true</BrowseInformation> 58 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 59 </ClCompile> 60 <Link> 61 <AdditionalDependencies>icuucd.lib;icuind.lib;icutud.lib;%(AdditionalDependencies)</AdditionalDependencies> 62 </Link> 63 </ItemDefinitionGroup> 64 <!-- Options that are common to all 'Release' project configurations --> 65 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 66 <ClCompile> 67 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 68 <FunctionLevelLinking>true</FunctionLevelLinking> 69 </ClCompile> 70 <Link> 71 <AdditionalDependencies>icuuc.lib;icuin.lib;icutu.lib;%(AdditionalDependencies)</AdditionalDependencies> 72 </Link> 73 </ItemDefinitionGroup> 74 <ItemGroup> 75 <ClCompile Include="errmsg.c" /> 76 <ClCompile Include="filterrb.cpp" /> 77 <ClCompile Include="genrb.cpp" /> 78 <ClCompile Include="parse.cpp"> 79 <DisableLanguageExtensions>false</DisableLanguageExtensions> 80 </ClCompile> 81 <ClCompile Include="prscmnts.cpp"> 82 <DisableLanguageExtensions>false</DisableLanguageExtensions> 83 </ClCompile> 84 <ClCompile Include="rbutil.c" /> 85 <ClCompile Include="read.c" /> 86 <ClCompile Include="reslist.cpp"> 87 <DisableLanguageExtensions>false</DisableLanguageExtensions> 88 </ClCompile> 89 <ClCompile Include="rle.c" /> 90 <ClCompile Include="ustr.c" /> 91 <ClCompile Include="wrtjava.cpp"> 92 <DisableLanguageExtensions>false</DisableLanguageExtensions> 93 </ClCompile> 94 <ClCompile Include="wrtxml.cpp"> 95 <DisableLanguageExtensions>false</DisableLanguageExtensions> 96 </ClCompile> 97 </ItemGroup> 98 <ItemGroup> 99 <ClInclude Include="errmsg.h" /> 100 <ClInclude Include="genrb.h" /> 101 <ClInclude Include="filterrb.h" /> 102 <ClInclude Include="parse.h" /> 103 <ClInclude Include="prscmnts.h" /> 104 <ClInclude Include="rbutil.h" /> 105 <ClInclude Include="read.h" /> 106 <ClInclude Include="reslist.h" /> 107 <ClInclude Include="rle.h" /> 108 <ClInclude Include="ustr.h" /> 109 </ItemGroup> 110 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 111 <ImportGroup Label="ExtensionTargets"> 112 </ImportGroup> 113</Project>