-
Notifications
You must be signed in to change notification settings - Fork 3
/
ice.proj
80 lines (62 loc) · 3.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?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" />
<PropertyGroup>
<DefaultPlatformToolset Condition="'$(VisualStudioVersion)' == '10.0' And '$(DefaultPlatformToolset)' == ''">v100</DefaultPlatformToolset>
</PropertyGroup>
<ItemGroup>
<Projects Include="$(MSBuildThisFileDirectory)cpp\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)csharp\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' != 'v100'">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)java\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' != 'v100'">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)java-compat\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' != 'v100'">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<!-- For PHP build both thread safe and non thread safe configurations -->
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v140'">
<Properties>Platform=$(Platform);Configuration=$(Configuration);BuildWithPhpVersion=7.1</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v140'">
<Properties>Platform=$(Platform);Configuration=NTS-$(Configuration);BuildWithPHPVersion=7.1</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v141'">
<Properties>Platform=$(Platform);Configuration=$(Configuration);BuildWithPhpVersion=7.2</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v141'">
<Properties>Platform=$(Platform);Configuration=NTS-$(Configuration);BuildWithPHPVersion=7.2</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v142'">
<Properties>Platform=$(Platform);Configuration=$(Configuration);BuildWithPhpVersion=8.0</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)php\msbuild\ice.proj" Condition="'$(DefaultPlatformToolset)' == 'v142'">
<Properties>Platform=$(Platform);Configuration=NTS-$(Configuration);BuildWithPHPVersion=8.0</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)js\msbuild\ice.proj">
<Properties>Platform=$(Platform);Configuration=$(Configuration)</Properties>
</Projects>
<Projects Include="$(MSBuildThisFileDirectory)python\msbuild\ice.proj"
Condition="'$(DefaultPlatformToolset)' == 'v140' or '$(DefaultPlatformToolset)' == 'v141' or '$(DefaultPlatformToolset)' == 'v142' or '$(DefaultPlatformToolset)' == 'v143'">
<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>