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>{77C78066-746F-4EA6-B3FE-B8C8A4A97891}</ProjectGuid> 5 <RootNamespace>gentest</RootNamespace> 6 </PropertyGroup> 7 <PropertyGroup Label="Configuration"> 8 <ConfigurationType>Application</ConfigurationType> 9 <UseOfMfc>false</UseOfMfc> 10 <CharacterSet>MultiByte</CharacterSet> 11 </PropertyGroup> 12 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 13 <!-- The following import will include the 'default' configuration options for VS projects. --> 14 <Import Project="..\..\allinone\Build.Windows.ProjectConfiguration.props" /> 15 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 16 <ImportGroup Label="ExtensionSettings"> 17 </ImportGroup> 18 <PropertyGroup Label="UserMacros" /> 19 <PropertyGroup> 20 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 21 <OutDir>.\$(Platform)\$(Configuration)\</OutDir> 22 <IntDir>.\$(Platform)\$(Configuration)\</IntDir> 23 <!-- The ICU projects use "Win32" to mean "x86", so we need to special case it. --> 24 <OutDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</OutDir> 25 <IntDir Condition="'$(Platform)'=='Win32'">.\x86\$(Configuration)\</IntDir> 26 <!-- Disable Incremental Linking for Release builds as it prevents Link-time Code Generation --> 27 <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> 28 <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> 29 </PropertyGroup> 30 <!-- Options that are common to *all* configurations --> 31 <ItemDefinitionGroup> 32 <Midl> 33 <TypeLibraryName>$(OutDir)/gentest.tlb</TypeLibraryName> 34 </Midl> 35 <ClCompile> 36 <WarningLevel>Level3</WarningLevel> 37 <CompileAs>Default</CompileAs> 38 <DisableLanguageExtensions>true</DisableLanguageExtensions> 39 <AdditionalIncludeDirectories>..\..\..\include;..\..\common;..\toolutil;..\ctestfw;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 40 <PrecompiledHeaderOutputFile>$(OutDir)/gentest.pch</PrecompiledHeaderOutputFile> 41 <AssemblerListingLocation>$(OutDir)/</AssemblerListingLocation> 42 <ObjectFileName>$(OutDir)/</ObjectFileName> 43 <ProgramDataBaseFileName>$(OutDir)/gentest.pdb</ProgramDataBaseFileName> 44 </ClCompile> 45 <Link> 46 <SubSystem>Console</SubSystem> 47 <OutputFile>$(OutDir)/gentest.exe</OutputFile> 48 <AdditionalLibraryDirectories>..\..\..\$(IcuLibOutputDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 49 <ProgramDatabaseFile>$(OutDir)/gentest.pdb</ProgramDatabaseFile> 50 </Link> 51 </ItemDefinitionGroup> 52 <!-- Options that are common to all 'Debug' project configurations --> 53 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 54 <ClCompile> 55 <BrowseInformation>true</BrowseInformation> 56 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 57 </ClCompile> 58 <Link> 59 <AdditionalDependencies>icuucd.lib;icutestd.lib;icutud.lib;%(AdditionalDependencies)</AdditionalDependencies> 60 </Link> 61 </ItemDefinitionGroup> 62 <!-- Options that are common to all 'Release' project configurations --> 63 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 64 <ClCompile> 65 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 66 <FunctionLevelLinking>true</FunctionLevelLinking> 67 </ClCompile> 68 <Link> 69 <AdditionalDependencies>icuuc.lib;icutest.lib;icutu.lib;%(AdditionalDependencies)</AdditionalDependencies> 70 </Link> 71 </ItemDefinitionGroup> 72 <ItemGroup> 73 <ClCompile Include="genres32.c" /> 74 <ClCompile Include="gentest.c" /> 75 </ItemGroup> 76 <ItemGroup> 77 <ClInclude Include="gentest.h" /> 78 </ItemGroup> 79 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 80 <ImportGroup Label="ExtensionTargets"> 81 </ImportGroup> 82</Project>