mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Now has support for isochronous transfers in the WinUSB backend, which may or may not work better than the UsbDk backend.
27 lines
1.2 KiB
Batchfile
27 lines
1.2 KiB
Batchfile
echo on
|
|
SetLocal EnableDelayedExpansion
|
|
|
|
if [%Configuration%] NEQ [Debug] goto releasex64
|
|
if [%Configuration%] NEQ [Release] goto debugx64
|
|
|
|
:debugx64
|
|
if [%Platform%] NEQ [x64] goto debugWin32
|
|
if [%Configuration%] NEQ [Debug] exit 0
|
|
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Debug /x64 || exit /B
|
|
msbuild %libusb_2010% /p:Configuration=Debug,Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
|
|
|
|
:releasex64
|
|
if [%Platform%] NEQ [x64] goto releaseWin32
|
|
if [%Configuration%] NEQ [Release] exit 0
|
|
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x64 || exit /B
|
|
msbuild %libusb_2010% /p:Configuration=Release,Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
|
|
|
|
:debugWin32
|
|
if [%Platform%] NEQ [Win32] exit 0
|
|
if [%Configuration%] NEQ [Debug] exit 0
|
|
msbuild %libusb_2010% /p:Configuration=Debug,Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
|
|
|
|
:releaseWin32
|
|
if [%Platform%] NEQ [Win32] exit 0
|
|
if [%Configuration%] NEQ [Release] exit 0
|
|
msbuild %libusb_2010% /p:Configuration=Release,Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || exit /B
|