blob: b69a93a24ea9b28c5bb3a8cadcd22db792c922b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildThisFileDirectory)..\..\config\icebuilder.props"/>
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
</PropertyGroup>
<Choose>
<When Condition="'$(ICE_BIN_DIST)' == 'all'">
<PropertyGroup>
<IceToolsPath>$(IceHome)\bin</IceToolsPath>
</PropertyGroup>
</When>
<When Condition="'$(ICE_BIN_DIST)' == 'cpp'">
<PropertyGroup>
<IceHome>$(MSBuildThisFileDirectory)\packages\zeroc.ice.v140.$(IceVersion)</IceHome>
<IceToolsPath>$(IceHome)\tools</IceToolsPath>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<IceHome>$(MSBuildThisFileDirectory)..\..</IceHome>
<IceToolsPath>$(IceHome)\cpp\bin\$(Platform)\$(Configuration)</IceToolsPath>
</PropertyGroup>
</Otherwise>
</Choose>
</Project>
|