blob: c156fda2b87aca5a6294d6fc67f6806262b5f5f8 [file] [log] [blame]
nnoble5f2ecb32015-01-12 16:40:18 -08001<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Release|Win32">
9 <Configuration>Release</Configuration>
10 <Platform>Win32</Platform>
11 </ProjectConfiguration>
12 </ItemGroup>
13 <PropertyGroup Label="Globals">
14 <ProjectGuid>{EAB0A629-17A9-44DB-B5FF-E91A721FE037}</ProjectGuid>
15 </PropertyGroup>
16 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070017 <PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration">
18 <PlatformToolset>v100</PlatformToolset>
19 </PropertyGroup>
20 <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration">
21 <PlatformToolset>v110</PlatformToolset>
22 </PropertyGroup>
23 <PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration">
24 <PlatformToolset>v120</PlatformToolset>
25 </PropertyGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080026 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
27 <ConfigurationType>StaticLibrary</ConfigurationType>
28 <UseDebugLibraries>true</UseDebugLibraries>
nnoble5f2ecb32015-01-12 16:40:18 -080029 <CharacterSet>Unicode</CharacterSet>
nnoble5f2ecb32015-01-12 16:40:18 -080030 </PropertyGroup>
31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ConfigurationType>StaticLibrary</ConfigurationType>
33 <UseDebugLibraries>false</UseDebugLibraries>
nnoble5f2ecb32015-01-12 16:40:18 -080034 <WholeProgramOptimization>true</WholeProgramOptimization>
35 <CharacterSet>Unicode</CharacterSet>
nnoble5f2ecb32015-01-12 16:40:18 -080036 </PropertyGroup>
37 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
38 <ImportGroup Label="ExtensionSettings">
39 </ImportGroup>
40 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
41 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070042 <Import Project="..\global.props" />
nnoble5f2ecb32015-01-12 16:40:18 -080043 </ImportGroup>
44 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
45 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070046 <Import Project="..\global.props" />
nnoble5f2ecb32015-01-12 16:40:18 -080047 </ImportGroup>
48 <PropertyGroup Label="UserMacros" />
Jan Tattermuschf6ff8f62015-02-11 14:43:11 -080049 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
50 <TargetName>gpr_test_util</TargetName>
51 </PropertyGroup>
52 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
53 <TargetName>gpr_test_util</TargetName>
54 </PropertyGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080055 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
56 <ClCompile>
57 <PrecompiledHeader>NotUsing</PrecompiledHeader>
58 <WarningLevel>Level3</WarningLevel>
59 <Optimization>Disabled</Optimization>
60 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
61 <SDLCheck>true</SDLCheck>
62 </ClCompile>
63 <Link>
64 <SubSystem>Windows</SubSystem>
65 <GenerateDebugInformation>true</GenerateDebugInformation>
66 </Link>
67 </ItemDefinitionGroup>
68 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
69 <ClCompile>
70 <WarningLevel>Level3</WarningLevel>
71 <PrecompiledHeader>NotUsing</PrecompiledHeader>
72 <Optimization>MaxSpeed</Optimization>
73 <FunctionLevelLinking>true</FunctionLevelLinking>
74 <IntrinsicFunctions>true</IntrinsicFunctions>
75 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76 <SDLCheck>true</SDLCheck>
77 </ClCompile>
78 <Link>
79 <SubSystem>Windows</SubSystem>
80 <GenerateDebugInformation>true</GenerateDebugInformation>
81 <EnableCOMDATFolding>true</EnableCOMDATFolding>
82 <OptimizeReferences>true</OptimizeReferences>
83 </Link>
84 </ItemDefinitionGroup>
85 <ItemGroup>
Yang Gao929481e2015-04-01 13:58:25 -070086 <ClInclude Include="..\..\test\core\util\test_config.h" />
87 </ItemGroup>
88 <ItemGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080089 <ClCompile Include="..\..\test\core\util\test_config.c">
90 </ClCompile>
91 </ItemGroup>
Jan Tattermuschadeaf632015-02-12 17:23:13 -080092 <ItemGroup>
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070093 <ProjectReference Include="..\gpr\gpr.vcxproj">
Jan Tattermuschadeaf632015-02-12 17:23:13 -080094 <Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project>
95 </ProjectReference>
96 </ItemGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080097 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
98 <ImportGroup Label="ExtensionTargets">
99 </ImportGroup>
100</Project>