forked from zeroc-ice/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathice.proj
35 lines (27 loc) · 1.17 KB
/
ice.proj
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
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">Win32</Platform>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<ItemGroup>
<Projects Include="$(MSBuildThisFileDirectory)cpp\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)csharp\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v142'">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(Projects)"
BuildInParallel="false"
Properties="%(Properties)" />
</Target>
<Target Name="Clean">
<MSBuild Projects="@(Projects)"
BuildInParallel="false"
Targets="Clean"
Properties="Platform=$(Platform);Configuration=%(Configuration)" />
</Target>
</Project>