forked from Azure/azure-storage-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.proj
85 lines (78 loc) · 3.34 KB
/
build.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
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="Clean;BuildAll">
<ItemGroup>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj" >
<Properties>Configuration=Debug;Platform=Win32</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj" >
<Properties>Configuration=Release;Platform=Win32</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj" >
<Properties>Configuration=Debug;Platform=x64</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj" >
<Properties>Configuration=Release;Platform=x64</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj" >
<Properties>Configuration=Debug;Platform=Win32</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj" >
<Properties>Configuration=Release;Platform=Win32</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj" >
<Properties>Configuration=Debug;Platform=x64</Properties>
</StorageSln>
<StorageSln Include=".\Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj" >
<Properties>Configuration=Release;Platform=x64</Properties>
</StorageSln>
</ItemGroup>
<Target Name="Clean">
<!-- Clean the solutions -->
<Message Importance="high" Text="Cleaning all projects..." ContinueOnError="true" />
<MSBuild
Projects="@(StorageSln)"
Targets="Clean"
BuildInParallel="true" />
</Target>
<Target Name="BuildAll">
<Message Importance="high" Text="Building all versions of the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
BuildInParallel="true" />
</Target>
<Target Name="BuildWin32Release">
<Message Importance="high" Text="Building Win32 release version of the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Condition=" '%(Properties)' == 'Configuration=Release;Platform=Win32' "
BuildInParallel="true" />
</Target>
<Target Name="BuildWin32Debug">
<Message Importance="high" Text="Building Win32 debug version the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Condition=" '%(Properties)' == 'Configuration=Debug;Platform=Win32' "
BuildInParallel="true" />
</Target>
<Target Name="Buildx64Release">
<Message Importance="high" Text="Building x64 release version of the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Condition=" '%(Properties)' == 'Configuration=Release;Platform=x64' "
BuildInParallel="true" />
</Target>
<Target Name="Buildx64Debug">
<Message Importance="high" Text="Building x64 debug version the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Condition=" '%(Properties)' == 'Configuration=Debug;Platform=x64' "
BuildInParallel="true" />
</Target>
</Project>