-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.proj
32 lines (28 loc) · 2.16 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Build all binaries -->
<Target Name="BuildRelease_x86">
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release;Platform=Win32;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release-MT;Platform=Win32;PlatformToolset=v100"/>
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release;Platform=Win32;PlatformToolset=v120_xp" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release-MT;Platform=Win32;PlatformToolset=v120_xp"/>
</Target>
<Target Name="BuildRelease_x64">
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release;Platform=x64;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release-MT;Platform=x64;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release;Platform=x64;PlatformToolset=v120_xp" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Release-MT;Platform=x64;PlatformToolset=v120_xp" />
</Target>
<Target Name="BuildDebug_x86">
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug;Platform=Win32;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug-MT;Platform=Win32;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug;Platform=Win32;PlatformToolset=v120_xp" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug-MT;Platform=Win32;PlatformToolset=v120_xp" />
</Target>
<Target Name="BuildDebug_x64">
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug;Platform=x64;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug-MT;Platform=x64;PlatformToolset=v100" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug;Platform=x64;PlatformToolset=v120_xp" />
<MSBuild Projects="HookEngine.sln" Properties="Configuration=Debug-MT;Platform=x64;PlatformToolset=v120_xp" />
</Target>
</Project>