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>{C7891A65-80AB-4245-912E-5F1E17B0E6C4}</ProjectGuid> 5 <RootNamespace>gennorm2</RootNamespace> 6 </PropertyGroup> 7 <PropertyGroup Label="Configuration"> 8 <ConfigurationType>Application</ConfigurationType> 9 <CharacterSet>Unicode</CharacterSet> 10 </PropertyGroup> 11 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> 12 <WholeProgramOptimization>true</WholeProgramOptimization> 13 </PropertyGroup> 14 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 15 <!-- The following import will include the 'default' configuration options for VS projects. --> 16 <Import Project="..\..\allinone\Build.Windows.ProjectConfiguration.props" /> 17 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 18 <ImportGroup Label="ExtensionSettings"> 19 </ImportGroup> 20 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 21 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 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 </ImportGroup> 26 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 27 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 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 </ImportGroup> 32 <PropertyGroup Label="UserMacros" /> 33 <PropertyGroup> 34 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 35 <OutDir>.\$(Platform)\$(Configuration)\</OutDir> 36 <IntDir>.\$(Platform)\$(Configuration)\</IntDir> 37 <!-- The ICU projects use "Win32" to mean "x86", so we need to special case it. --> 38 <OutDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</OutDir> 39 <IntDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</IntDir> 40 <!-- Disable Incremental Linking for Release builds as it prevents Link-time Code Generation --> 41 <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> 42 <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> 43 </PropertyGroup> 44 <!-- Options that are common to *all* configurations --> 45 <ItemDefinitionGroup> 46 <Midl> 47 <TypeLibraryName>$(OutDir)\gennorm2.tlb</TypeLibraryName> 48 </Midl> 49 <ClCompile> 50 <WarningLevel>Level3</WarningLevel> 51 <CompileAs>Default</CompileAs> 52 <DisableLanguageExtensions>false</DisableLanguageExtensions> 53 <AdditionalIncludeDirectories>..\..\common;..\toolutil;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 54 <PrecompiledHeaderOutputFile>$(OutDir)\gennorm2.pch</PrecompiledHeaderOutputFile> 55 <AssemblerListingLocation>$(OutDir)/</AssemblerListingLocation> 56 <ObjectFileName>$(OutDir)/</ObjectFileName> 57 <ProgramDataBaseFileName>$(OutDir)\gennorm2.pdb</ProgramDataBaseFileName> 58 </ClCompile> 59 <Link> 60 <SubSystem>Console</SubSystem> 61 <OutputFile>$(OutDir)\gennorm2.exe</OutputFile> 62 <AdditionalLibraryDirectories>..\..\..\$(IcuLibOutputDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 63 </Link> 64 <CustomBuildStep> 65 <Command>copy "$(TargetPath)" ..\..\..\$(IcuBinOutputDir)</Command> 66 <Outputs>..\..\..\$(IcuBinOutputDir)\$(TargetFileName);%(Outputs)</Outputs> 67 </CustomBuildStep> 68 </ItemDefinitionGroup> 69 <!-- Options that are common to all 'Debug' project configurations --> 70 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 71 <ClCompile> 72 <BrowseInformation>true</BrowseInformation> 73 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 74 </ClCompile> 75 <Link> 76 <AdditionalDependencies>icuucd.lib;icutud.lib;%(AdditionalDependencies)</AdditionalDependencies> 77 </Link> 78 </ItemDefinitionGroup> 79 <!-- Options that are common to all 'Release' project configurations --> 80 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 81 <ClCompile> 82 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 83 <FunctionLevelLinking>true</FunctionLevelLinking> 84 </ClCompile> 85 <Link> 86 <AdditionalDependencies>icuuc.lib;icutu.lib;%(AdditionalDependencies)</AdditionalDependencies> 87 </Link> 88 </ItemDefinitionGroup> 89 <ItemGroup> 90 <ClCompile Include="extradata.cpp" /> 91 <ClCompile Include="gennorm2.cpp" /> 92 <ClCompile Include="n2builder.cpp" /> 93 <ClCompile Include="norms.cpp" /> 94 </ItemGroup> 95 <ItemGroup> 96 <ClInclude Include="extradata.h" /> 97 <ClInclude Include="n2builder.h" /> 98 <ClInclude Include="norms.h" /> 99 </ItemGroup> 100 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 101 <ImportGroup Label="ExtensionTargets"> 102 </ImportGroup> 103</Project>