Windows: Add experimental MSBuild file to build x86 and x64 builds together.

This commit is contained in:
Henrik Rydgård 2017-03-13 14:21:14 +01:00
parent e6abf1862c
commit 8f5f154559

View File

@ -0,0 +1,14 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Both">
<Target Name="Both">
<MSBuild Projects="PPSSPP.sln"
Targets="PPSSPPWindows:Rebuild"
Properties="Configuration=Release;Platform=Win32"
StopOnFirstFailure="true">
</MSBuild>
<MSBuild Projects="PPSSPP.sln"
Targets="PPSSPPWindows:Rebuild"
Properties="Configuration=Release;Platform=x64"
StopOnFirstFailure="true">
</MSBuild>
</Target>
</Project>