forked from zeroc-ice/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ice.proj
46 lines (35 loc) · 1.71 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
36
37
38
39
40
41
42
43
44
45
46
<?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">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)java\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)js\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)python\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(Projects)" BuildInParallel="false" Properties="%(Properties)" />
</Target>
<Target Name="BuildDist">
<MSBuild Projects="@(Projects)" BuildInParallel="false" Properties="%(Properties)" Targets="BuildDist" />
</Target>
<Target Name="Clean">
<MSBuild Projects="@(Projects)" BuildInParallel="false" Targets="Clean" Properties="Platform=$(Platform);Configuration=%(Configuration)" />
</Target>
</Project>