mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.7 KiB
28 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
<PropertyGroup Condition=" '$(NativeDependenciesConfiguration)' == '' "> |
|
<NativeDependenciesConfiguration Condition=" '$(Configuration)' == 'Debug' ">Debug</NativeDependenciesConfiguration> |
|
<NativeDependenciesConfiguration Condition=" '$(Configuration)' == 'Release' ">Release</NativeDependenciesConfiguration> |
|
<NativeDependenciesConfiguration Condition=" '$(Configuration)' == 'ReleaseSigned' ">Release</NativeDependenciesConfiguration> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(NativeDependenciesConfigurationUnix)' == '' "> |
|
<NativeDependenciesConfigurationUnix Condition=" '$(Configuration)' == 'Debug' ">dbg</NativeDependenciesConfigurationUnix> |
|
<NativeDependenciesConfigurationUnix Condition=" '$(Configuration)' == 'Release' ">opt</NativeDependenciesConfigurationUnix> |
|
<NativeDependenciesConfigurationUnix Condition=" '$(Configuration)' == 'ReleaseSigned' ">opt</NativeDependenciesConfigurationUnix> |
|
</PropertyGroup> |
|
|
|
<!-- Autodetect platform --> |
|
<PropertyGroup Condition=" '$(OS)' != 'Unix' "> |
|
<NativeDepsPlatform>Windows</NativeDepsPlatform> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(OS)' == 'Unix' And Exists('/Applications') And Exists('/Library') And Exists('/System') "> |
|
<NativeDepsPlatform>Mac</NativeDepsPlatform> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(OS)' == 'Unix' And '$(NativeDepsPlatform)' == '' "> |
|
<NativeDepsPlatform>Linux</NativeDepsPlatform> |
|
</PropertyGroup> |
|
|
|
<Import Project="NativeDeps.$(NativeDepsPlatform).targets" /> |
|
</Project> |