1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup Label="Globals"> 4 <ProjectGuid>{203EC78A-0531-43F0-A636-285439BDE025}</ProjectGuid> 5 </PropertyGroup> 6 <PropertyGroup Label="Configuration"> 7 <ConfigurationType>DynamicLibrary</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 <!-- The following import will include the library configuration options for VS projects. --> 15 <Import Project="..\allinone\Build.Windows.Library.ProjectConfiguration.props" /> 16 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 17 <ImportGroup Label="ExtensionSettings"> 18 </ImportGroup> 19 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 20 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 21 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 22 </ImportGroup> 23 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 24 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 25 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 26 </ImportGroup> 27 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 28 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 29 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 30 </ImportGroup> 31 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 32 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 33 <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC71.props" /> 34 </ImportGroup> 35 <PropertyGroup Label="UserMacros" /> 36 <PropertyGroup> 37 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 38 <GenerateManifest>false</GenerateManifest> 39 <OutDir>.\$(Platform)\$(Configuration)\</OutDir> 40 <IntDir>.\$(Platform)\$(Configuration)\</IntDir> 41 <!-- The ICU projects use "Win32" to mean "x86", so we need to special case it. --> 42 <OutDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</OutDir> 43 <IntDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</IntDir> 44 <!-- Disable Incremental Linking for Release builds as it prevents Link-time Code Generation --> 45 <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> 46 <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> 47 </PropertyGroup> 48 <!-- Options that are common to *all* project configurations --> 49 <ItemDefinitionGroup> 50 <Midl> 51 <TypeLibraryName>$(OutDir)\icudt.tlb</TypeLibraryName> 52 </Midl> 53 <ClCompile> 54 <AdditionalIncludeDirectories>..\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 55 <PreprocessorDefinitions>STUBDATA_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions> 56 <DisableLanguageExtensions>true</DisableLanguageExtensions> 57 <WarningLevel>Level3</WarningLevel> 58 <CompileAs>Default</CompileAs> 59 <PrecompiledHeaderOutputFile>$(OutDir)/icudt.pch</PrecompiledHeaderOutputFile> 60 <AssemblerListingLocation>$(OutDir)/</AssemblerListingLocation> 61 <ObjectFileName>$(OutDir)/</ObjectFileName> 62 <ProgramDataBaseFileName>$(OutDir)/icudt.pdb</ProgramDataBaseFileName> 63 </ClCompile> 64 <ResourceCompile> 65 <PreprocessorDefinitions>STUBDATA_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions> 66 </ResourceCompile> 67 <PreLinkEvent> 68 <Command>echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "$(ProjectDir)stubdatabuilt.txt"</Command> 69 </PreLinkEvent> 70 <Link> 71 <NoEntryPoint>true</NoEntryPoint> 72 <SetChecksum>true</SetChecksum> 73 <TurnOffAssemblyGeneration>true</TurnOffAssemblyGeneration> 74 <!-- Note: stubdata is somewhat odd in that it doesn't suffix the Debug output DLL/LIB with a "d" like common/i18n/etc. --> 75 <OutputFile>..\..\$(IcuBinOutputDir)\icudt66.dll</OutputFile> 76 <ProgramDatabaseFile>.\..\..\$(IcuLibOutputDir)\icudt.pdb</ProgramDatabaseFile> 77 <ImportLibrary>..\..\$(IcuLibOutputDir)\icudt.lib</ImportLibrary> 78 </Link> 79 </ItemDefinitionGroup> 80 <!-- Options that are common to all 'Debug' project configurations --> 81 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 82 <ClCompile> 83 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 84 </ClCompile> 85 </ItemDefinitionGroup> 86 <!-- Options that are common to all 'Release' project configurations --> 87 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 88 <ClCompile> 89 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 90 </ClCompile> 91 </ItemDefinitionGroup> 92 <ItemGroup> 93 <ClCompile Include="stubdata.cpp" /> 94 </ItemGroup> 95 <ItemGroup> 96 <ResourceCompile Include="..\data\misc\icudata.rc"> 97 <AdditionalIncludeDirectories>../common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 98 </ResourceCompile> 99 </ItemGroup> 100 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 101 <ImportGroup Label="ExtensionTargets"> 102 </ImportGroup> 103</Project> 104