mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Windows: Add experimental MSBuild file to build x86 and x64 builds together.
This commit is contained in:
parent
e6abf1862c
commit
8f5f154559
14
Windows/build_windows.proj
Normal file
14
Windows/build_windows.proj
Normal 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>
|
Loading…
Reference in New Issue
Block a user