mirror of https://github.com/grpc/grpc.git
Current state for Windows platform: -- gpr and grpc_test_util can be compiled -- gpr_log_test and gpr_cmdline_test pass Change on 2014/12/08 by jtattermusch <jtattermusch@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81615574pull/1/merge
parent
ba22e87c68
commit
97fb3f6481
27 changed files with 1193 additions and 42 deletions
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('gpr', libs, targets)} |
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('gpr_cancellable_test', libs, targets)} |
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('gpr_cmdline_test', libs, targets)} |
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('gpr_log_test', libs, targets)} |
@ -0,0 +1,58 @@ |
||||
## Template for Visual Studio solution |
||||
## based on http://msdn.microsoft.com/en-us/library/bb165951(v=vs.90).aspx |
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||
# Visual Studio 2013 |
||||
VisualStudioVersion = 12.0.21005.1 |
||||
MinimumVisualStudioVersion = 10.0.40219.1 |
||||
<% |
||||
## Visual Studio uses GUIDs for project types |
||||
## http://msdn.microsoft.com/en-us/library/hb23x61k%28v=vs.80%29.aspx |
||||
cpp_proj_type = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}" |
||||
|
||||
for lib in libs: |
||||
lib.is_library = True |
||||
for target in targets: |
||||
target.is_library = False |
||||
|
||||
projects = [] |
||||
projects.extend(libs) |
||||
projects.extend(targets) |
||||
projects = [project for project in projects if project.get('vs_project_guid', None)] |
||||
|
||||
## Exclude C++ projects for now |
||||
projects = [project for project in projects if not project.get('c++', False)] |
||||
|
||||
for p in projects: |
||||
p.deps = p.get('deps',[]) |
||||
|
||||
project_dict = dict([(p.name, p) for p in projects]) |
||||
%>\ |
||||
% for project in projects: |
||||
Project("${cpp_proj_type}") = "${project.name}", "${project.name}.vcxproj", "${project.vs_project_guid}" |
||||
% if project.deps: |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
% for dep in project.deps: |
||||
${project_dict[dep].vs_project_guid} = ${project_dict[dep].vs_project_guid} |
||||
% endfor |
||||
EndProjectSection |
||||
% endif |
||||
EndProject |
||||
% endfor |
||||
Global |
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||
Debug|Win32 = Debug|Win32 |
||||
Release|Win32 = Release|Win32 |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||
% for project in projects: |
||||
${project.vs_project_guid}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
${project.vs_project_guid}.Debug|Win32.Build.0 = Debug|Win32 |
||||
${project.vs_project_guid}.Release|Win32.ActiveCfg = Release|Win32 |
||||
${project.vs_project_guid}.Release|Win32.Build.0 = Release|Win32 |
||||
% endfor |
||||
EndGlobalSection |
||||
GlobalSection(SolutionProperties) = preSolution |
||||
HideSolutionNode = FALSE |
||||
EndGlobalSection |
||||
EndGlobal |
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('grpc', libs, targets)} |
@ -0,0 +1,2 @@ |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project('grpc_test_util', libs, targets)} |
@ -0,0 +1,138 @@ |
||||
<%def name="to_windows_path(path)">${path.replace('/','\\')}</%def>\ |
||||
<%def name="get_configuration_type(is_library)">${'StaticLibrary' if is_library else 'Application'}</%def>\ |
||||
<%def name="get_subsystem(is_library)">${'Windows' if is_library else 'Console'}</%def>\ |
||||
<%def name="gen_project(name, libs, targets)">\ |
||||
<% |
||||
## TODO(jtattermusch): this code is c&p from the solution template |
||||
for lib in libs: |
||||
lib.is_library = True |
||||
for target in targets: |
||||
target.is_library = False |
||||
|
||||
projects = [] |
||||
projects.extend(libs) |
||||
projects.extend(targets) |
||||
projects = [project for project in projects if project.get('vs_project_guid', None)] |
||||
|
||||
## Exclude C++ projects for now |
||||
projects = [project for project in projects if not project.get('c++', False)] |
||||
|
||||
for p in projects: |
||||
p.deps = p.get('deps',[]) |
||||
|
||||
project_dict = dict([(p.name, p) for p in projects]) |
||||
%>\ |
||||
% for project in projects: |
||||
% if project.name == name: |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>${project.vs_project_guid}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>${get_configuration_type(project.is_library)}</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>${get_configuration_type(project.is_library)}</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>${get_subsystem(project.is_library)}</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>${get_subsystem(project.is_library)}</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
% if project.get('public_headers',[]): |
||||
<ItemGroup> |
||||
% for public_header in project.public_headers: |
||||
<ClInclude Include="..\..\${to_windows_path(public_header)}" /> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('headers',[]): |
||||
<ItemGroup> |
||||
% for header in project.headers: |
||||
<ClInclude Include="..\..\${to_windows_path(header)}" /> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('src',[]): |
||||
<ItemGroup> |
||||
% for src_name in project.src: |
||||
<ClCompile Include="..\..\${to_windows_path(src_name)}"> |
||||
</ClCompile> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('deps',[]): |
||||
<ItemGroup> |
||||
% for dep in project.deps: |
||||
<ProjectReference Include="${dep}.vcxproj"> |
||||
<Project>${project_dict[dep].vs_project_guid}</Project> |
||||
</ProjectReference> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
||||
% endif |
||||
% endfor |
||||
</%def>\ |
@ -0,0 +1 @@ |
||||
This directory contains MS Visual Studio project & solution files. |
@ -0,0 +1,161 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\include\grpc\support\alloc.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\atm_gcc_atomic.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\atm_gcc_sync.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\atm.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\atm_win32.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\cancellable_platform.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\cmdline.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\histogram.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\host_port.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\log.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\port_platform.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\slice_buffer.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\slice.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\string.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\sync_generic.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\sync.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\sync_posix.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\sync_win32.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\thd.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\thd_posix.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\thd_win32.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\time.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\time_posix.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\time_win32.h" /> |
||||
<ClInclude Include="..\..\include\grpc\support\useful.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\src\core\support\cpu.h" /> |
||||
<ClInclude Include="..\..\src\core\support\murmur_hash.h" /> |
||||
<ClInclude Include="..\..\src\core\support\thd_internal.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\src\core\support\alloc.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\cancellable.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\cmdline.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\cpu_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\histogram.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\host_port.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\log.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\log_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\log_linux.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\log_android.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\log_win32.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\murmur_hash.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\slice.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\slice_buffer.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\string.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\string_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\string_win32.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\sync.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\sync_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\thd_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\thd_win32.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\time.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\time_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\support\time_win32.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
||||
|
@ -0,0 +1,91 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\test\core\support\cancellable_test.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ProjectReference Include="grpc_test_util.vcxproj"> |
||||
<Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project> |
||||
</ProjectReference> |
||||
<ProjectReference Include="gpr.vcxproj"> |
||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
||||
</ProjectReference> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
||||
|
@ -0,0 +1,91 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{8F260F48-3C22-48A8-9928-A152ABB2EDF2}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\test\core\support\cmdline_test.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ProjectReference Include="grpc_test_util.vcxproj"> |
||||
<Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project> |
||||
</ProjectReference> |
||||
<ProjectReference Include="gpr.vcxproj"> |
||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
||||
</ProjectReference> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
||||
|
@ -0,0 +1,91 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{42B70122-188F-4535-AB74-F061C77068B4}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>Application</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Console</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\test\core\support\log_test.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ProjectReference Include="grpc_test_util.vcxproj"> |
||||
<Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project> |
||||
</ProjectReference> |
||||
<ProjectReference Include="gpr.vcxproj"> |
||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
||||
</ProjectReference> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
||||
|
@ -0,0 +1,64 @@ |
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||
# Visual Studio 2013 |
||||
VisualStudioVersion = 12.0.21005.1 |
||||
MinimumVisualStudioVersion = 10.0.40219.1 |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr", "gpr.vcxproj", "{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}" |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc", "grpc.vcxproj", "{29D16885-7228-4C31-81ED-5F9187C7F2A9}" |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_test_util", "grpc_test_util.vcxproj", "{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}" |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr_cancellable_test", "gpr_cancellable_test.vcxproj", "{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}" |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} = {17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr_log_test", "gpr_log_test.vcxproj", "{42B70122-188F-4535-AB74-F061C77068B4}" |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} = {17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr_cmdline_test", "gpr_cmdline_test.vcxproj", "{8F260F48-3C22-48A8-9928-A152ABB2EDF2}" |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} = {17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Global |
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||
Debug|Win32 = Debug|Win32 |
||||
Release|Win32 = Release|Win32 |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.Build.0 = Release|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.Build.0 = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.Build.0 = Release|Win32 |
||||
{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{19730BF6-7F8C-44EF-ACDC-2CA50C0403E7}.Release|Win32.Build.0 = Release|Win32 |
||||
{42B70122-188F-4535-AB74-F061C77068B4}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{42B70122-188F-4535-AB74-F061C77068B4}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{42B70122-188F-4535-AB74-F061C77068B4}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{42B70122-188F-4535-AB74-F061C77068B4}.Release|Win32.Build.0 = Release|Win32 |
||||
{8F260F48-3C22-48A8-9928-A152ABB2EDF2}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{8F260F48-3C22-48A8-9928-A152ABB2EDF2}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{8F260F48-3C22-48A8-9928-A152ABB2EDF2}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{8F260F48-3C22-48A8-9928-A152ABB2EDF2}.Release|Win32.Build.0 = Release|Win32 |
||||
EndGlobalSection |
||||
GlobalSection(SolutionProperties) = preSolution |
||||
HideSolutionNode = FALSE |
||||
EndGlobalSection |
||||
EndGlobal |
@ -0,0 +1,322 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{29D16885-7228-4C31-81ED-5F9187C7F2A9}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\include\grpc\byte_buffer.h" /> |
||||
<ClInclude Include="..\..\include\grpc\byte_buffer_reader.h" /> |
||||
<ClInclude Include="..\..\include\grpc\grpc.h" /> |
||||
<ClInclude Include="..\..\include\grpc\grpc_security.h" /> |
||||
<ClInclude Include="..\..\include\grpc\status.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\src\core\channel\census_filter.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\channel_args.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\channel_stack.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\client_channel.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\client_setup.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\connected_channel.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\http_client_filter.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\http_filter.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\http_server_filter.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\metadata_buffer.h" /> |
||||
<ClInclude Include="..\..\src\core\channel\noop_filter.h" /> |
||||
<ClInclude Include="..\..\src\core\compression\algorithm.h" /> |
||||
<ClInclude Include="..\..\src\core\compression\message_compress.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\endpoint.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\resolve_address.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\secure_endpoint.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\socket_utils.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\tcp_client.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\tcp.h" /> |
||||
<ClInclude Include="..\..\src\core\endpoint\tcp_server.h" /> |
||||
<ClInclude Include="..\..\src\core\eventmanager\em.h" /> |
||||
<ClInclude Include="..\..\src\core\httpcli\format_request.h" /> |
||||
<ClInclude Include="..\..\src\core\httpcli\httpcli.h" /> |
||||
<ClInclude Include="..\..\src\core\httpcli\httpcli_security_context.h" /> |
||||
<ClInclude Include="..\..\src\core\httpcli\parser.h" /> |
||||
<ClInclude Include="..\..\src\core\security\auth.h" /> |
||||
<ClInclude Include="..\..\src\core\security\credentials.h" /> |
||||
<ClInclude Include="..\..\src\core\security\google_root_certs.h" /> |
||||
<ClInclude Include="..\..\src\core\security\secure_transport_setup.h" /> |
||||
<ClInclude Include="..\..\src\core\security\security_context.h" /> |
||||
<ClInclude Include="..\..\src\core\statistics\census_interface.h" /> |
||||
<ClInclude Include="..\..\src\core\statistics\census_rpc_stats.h" /> |
||||
<ClInclude Include="..\..\src\core\statistics\hash_table.h" /> |
||||
<ClInclude Include="..\..\src\core\statistics\log.h" /> |
||||
<ClInclude Include="..\..\src\core\statistics\window_stats.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\call.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\channel.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\client.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\lame_client.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\completion_queue.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\event_string.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\server.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\surface_em.h" /> |
||||
<ClInclude Include="..\..\src\core\surface\surface_trace.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\bin_encoder.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_data.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_goaway.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_ping.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_rst_stream.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_settings.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\frame_window_update.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\hpack_parser.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\hpack_table.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\huffsyms.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\http2_errors.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\status_conversion.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\stream_encoder.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\stream_map.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\timeout_encoding.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2_transport.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\chttp2\varint.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\metadata.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\stream_op.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\transport.h" /> |
||||
<ClInclude Include="..\..\src\core\transport\transport_impl.h" /> |
||||
<ClInclude Include="..\..\src\core\tsi\fake_transport_security.h" /> |
||||
<ClInclude Include="..\..\src\core\tsi\ssl_transport_security.h" /> |
||||
<ClInclude Include="..\..\src\core\tsi\transport_security.h" /> |
||||
<ClInclude Include="..\..\src\core\tsi\transport_security_interface.h" /> |
||||
<ClInclude Include="..\..\src\core\tsi\transport_security_test_lib.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\src\core\channel\call_op_string.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\census_filter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\channel_args.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\channel_stack.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\client_channel.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\client_setup.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\connected_channel.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\http_client_filter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\http_filter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\http_server_filter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\metadata_buffer.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\channel\noop_filter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\compression\algorithm.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\compression\message_compress.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\endpoint.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\resolve_address.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\socket_utils.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\socket_utils_linux.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\socket_utils_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\tcp.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\tcp_client.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\tcp_server.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\eventmanager\em.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\eventmanager\em_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\byte_buffer.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\byte_buffer_reader.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\call.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\channel.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\channel_create.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\client.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\lame_client.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\completion_queue.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\event_string.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\init.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\server.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\server_chttp2.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\server_create.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\surface_em.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\alpn.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\bin_encoder.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_data.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_goaway.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_ping.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_rst_stream.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_settings.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\frame_window_update.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\hpack_parser.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\hpack_table.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\huffsyms.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\status_conversion.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\stream_encoder.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\stream_map.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\timeout_encoding.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2\varint.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\chttp2_transport.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\metadata.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\stream_op.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\transport\transport.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\census_init.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\census_rpc_stats.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\census_tracing.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\log.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\window_stats.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\statistics\hash_table.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\httpcli\format_request.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\httpcli\httpcli.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\httpcli\httpcli_security_context.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\httpcli\parser.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\auth.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\credentials.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\google_root_certs.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\secure_transport_setup.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\security_context.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\security\server_secure_chttp2.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\secure_channel_create.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\surface\secure_server_create.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\endpoint\secure_endpoint.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\tsi\transport_security.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\tsi\fake_transport_security.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\src\core\tsi\ssl_transport_security.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\third_party\cJSON\cJSON.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
@ -0,0 +1,100 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</ProjectGuid> |
||||
<Keyword>Win32Proj</Keyword> |
||||
<RootNamespace></RootNamespace> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup /> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..;$(SolutionDir)\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\test\core\util\grpc_profiler.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\util\parse_hexstring.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\util\port_posix.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\util\slice_splitter.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\util\test_config.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\end2end\end2end_tests.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\end2end\cq_verifier.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\endpoint\endpoint_tests.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\transport\transport_end2end_tests.c"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\test\core\statistics\log_tests.c"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
</Project> |
Loading…
Reference in new issue