blob: b1598018531021195aa7fb9f037a174fb1332a4a [file] [log] [blame]
Nicolas "Pixel" Noble5fb4ba02015-04-28 00:20:06 +02001<?xml version="1.0" encoding="utf-8"?>
nnoble5f2ecb32015-01-12 16:40:18 -08002<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>
zeliard292adfe2015-04-22 15:08:36 +09008 <ProjectConfiguration Include="Debug|x64">
9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
nnoble5f2ecb32015-01-12 16:40:18 -080012 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
zeliard292adfe2015-04-22 15:08:36 +090016 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
nnoble5f2ecb32015-01-12 16:40:18 -080020 </ItemGroup>
21 <PropertyGroup Label="Globals">
Craig Tiller02a7bed2015-08-31 15:54:05 -070022 <ProjectGuid>{5AFE7D17-A4A7-D68E-4491-CBC852F9D2A0}</ProjectGuid>
nnoble5f2ecb32015-01-12 16:40:18 -080023 </PropertyGroup>
24 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070025 <PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration">
26 <PlatformToolset>v100</PlatformToolset>
27 </PropertyGroup>
28 <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration">
29 <PlatformToolset>v110</PlatformToolset>
30 </PropertyGroup>
31 <PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration">
32 <PlatformToolset>v120</PlatformToolset>
33 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070034 <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
Craig Tiller02a7bed2015-08-31 15:54:05 -070035 <ConfigurationType>Application</ConfigurationType>
nnoble5f2ecb32015-01-12 16:40:18 -080036 <UseDebugLibraries>true</UseDebugLibraries>
nnoble5f2ecb32015-01-12 16:40:18 -080037 <CharacterSet>Unicode</CharacterSet>
nnoble5f2ecb32015-01-12 16:40:18 -080038 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070039 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
Craig Tiller02a7bed2015-08-31 15:54:05 -070040 <ConfigurationType>Application</ConfigurationType>
zeliard292adfe2015-04-22 15:08:36 +090041 <UseDebugLibraries>false</UseDebugLibraries>
42 <WholeProgramOptimization>true</WholeProgramOptimization>
43 <CharacterSet>Unicode</CharacterSet>
44 </PropertyGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080045 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
46 <ImportGroup Label="ExtensionSettings">
47 </ImportGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070048 <ImportGroup Label="PropertySheets">
nnoble5f2ecb32015-01-12 16:40:18 -080049 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Craig Tiller02a7bed2015-08-31 15:54:05 -070050 <Import Project="..\..\..\..\vsprojects\global.props" />
51 <Import Project="..\..\..\..\vsprojects\openssl.props" />
52 <Import Project="..\..\..\..\vsprojects\protobuf.props" />
53 <Import Project="..\..\..\..\vsprojects\winsock.props" />
54 <Import Project="..\..\..\..\vsprojects\zlib.props" />
zeliard292adfe2015-04-22 15:08:36 +090055 </ImportGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080056 <PropertyGroup Label="UserMacros" />
Nicolas Noble563b8a22015-07-30 15:39:43 -070057 <PropertyGroup Condition="'$(Configuration)'=='Debug'">
Craig Tiller02a7bed2015-08-31 15:54:05 -070058 <TargetName>compression_test</TargetName>
Jan Tattermuschf6ff8f62015-02-11 14:43:11 -080059 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070060 <PropertyGroup Condition="'$(Configuration)'=='Release'">
Craig Tiller02a7bed2015-08-31 15:54:05 -070061 <TargetName>compression_test</TargetName>
zeliard292adfe2015-04-22 15:08:36 +090062 </PropertyGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080063 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
64 <ClCompile>
65 <PrecompiledHeader>NotUsing</PrecompiledHeader>
66 <WarningLevel>Level3</WarningLevel>
67 <Optimization>Disabled</Optimization>
68 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
69 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -070070 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
nnoble5f2ecb32015-01-12 16:40:18 -080071 </ClCompile>
72 <Link>
Craig Tiller02a7bed2015-08-31 15:54:05 -070073 <SubSystem>Console</SubSystem>
nnoble5f2ecb32015-01-12 16:40:18 -080074 <GenerateDebugInformation>true</GenerateDebugInformation>
75 </Link>
76 </ItemDefinitionGroup>
zeliard292adfe2015-04-22 15:08:36 +090077 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
78 <ClCompile>
79 <PrecompiledHeader>NotUsing</PrecompiledHeader>
80 <WarningLevel>Level3</WarningLevel>
81 <Optimization>Disabled</Optimization>
82 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
83 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -070084 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
zeliard292adfe2015-04-22 15:08:36 +090085 </ClCompile>
86 <Link>
Craig Tiller02a7bed2015-08-31 15:54:05 -070087 <SubSystem>Console</SubSystem>
zeliard292adfe2015-04-22 15:08:36 +090088 <GenerateDebugInformation>true</GenerateDebugInformation>
89 </Link>
90 </ItemDefinitionGroup>
nnoble5f2ecb32015-01-12 16:40:18 -080091 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
92 <ClCompile>
93 <WarningLevel>Level3</WarningLevel>
94 <PrecompiledHeader>NotUsing</PrecompiledHeader>
95 <Optimization>MaxSpeed</Optimization>
96 <FunctionLevelLinking>true</FunctionLevelLinking>
97 <IntrinsicFunctions>true</IntrinsicFunctions>
98 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
99 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -0700100 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
nnoble5f2ecb32015-01-12 16:40:18 -0800101 </ClCompile>
102 <Link>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700103 <SubSystem>Console</SubSystem>
nnoble5f2ecb32015-01-12 16:40:18 -0800104 <GenerateDebugInformation>true</GenerateDebugInformation>
105 <EnableCOMDATFolding>true</EnableCOMDATFolding>
106 <OptimizeReferences>true</OptimizeReferences>
107 </Link>
108 </ItemDefinitionGroup>
zeliard292adfe2015-04-22 15:08:36 +0900109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
110 <ClCompile>
111 <WarningLevel>Level3</WarningLevel>
112 <PrecompiledHeader>NotUsing</PrecompiledHeader>
113 <Optimization>MaxSpeed</Optimization>
114 <FunctionLevelLinking>true</FunctionLevelLinking>
115 <IntrinsicFunctions>true</IntrinsicFunctions>
116 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
117 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -0700118 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
zeliard292adfe2015-04-22 15:08:36 +0900119 </ClCompile>
120 <Link>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700121 <SubSystem>Console</SubSystem>
zeliard292adfe2015-04-22 15:08:36 +0900122 <GenerateDebugInformation>true</GenerateDebugInformation>
123 <EnableCOMDATFolding>true</EnableCOMDATFolding>
124 <OptimizeReferences>true</OptimizeReferences>
125 </Link>
126 </ItemDefinitionGroup>
nnoble5f2ecb32015-01-12 16:40:18 -0800127 <ItemGroup>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700128 <ClCompile Include="..\..\..\..\test\core\compression\compression_test.c">
nnoble5f2ecb32015-01-12 16:40:18 -0800129 </ClCompile>
130 </ItemGroup>
Jan Tattermuschadeaf632015-02-12 17:23:13 -0800131 <ItemGroup>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700132 <ProjectReference Include="..\..\..\..\vsprojects\vcxproj\.\grpc_test_util\grpc_test_util.vcxproj">
133 <Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project>
134 </ProjectReference>
135 <ProjectReference Include="..\..\..\..\vsprojects\vcxproj\.\grpc\grpc.vcxproj">
136 <Project>{29D16885-7228-4C31-81ED-5F9187C7F2A9}</Project>
137 </ProjectReference>
138 <ProjectReference Include="..\..\..\..\vsprojects\vcxproj\.\gpr_test_util\gpr_test_util.vcxproj">
139 <Project>{EAB0A629-17A9-44DB-B5FF-E91A721FE037}</Project>
140 </ProjectReference>
141 <ProjectReference Include="..\..\..\..\vsprojects\vcxproj\.\gpr\gpr.vcxproj">
Jan Tattermuschadeaf632015-02-12 17:23:13 -0800142 <Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project>
143 </ProjectReference>
144 </ItemGroup>
nnoble5f2ecb32015-01-12 16:40:18 -0800145 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
146 <ImportGroup Label="ExtensionTargets">
147 </ImportGroup>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700148 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
149 <PropertyGroup>
150 <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
151 </PropertyGroup>
152 </Target>
Nicolas "Pixel" Noble5fb4ba02015-04-28 00:20:06 +0200153</Project>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700154