mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-12 19:30:44 +02:00

Now has support for isochronous transfers in the WinUSB backend, which may or may not work better than the UsbDk backend.
12 lines
519 B
Batchfile
12 lines
519 B
Batchfile
echo on
|
|
SetLocal EnableDelayedExpansion
|
|
|
|
if [%Configuration%] NEQ [Release] exit 0
|
|
if [%Platform%] NEQ [Win32] exit 0
|
|
|
|
C:\cygwin\bin\bash -e -l -c "./bootstrap.sh" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "mkdir build-Win32-cygwin" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && ../configure --enable-examples-build --enable-tests-build" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make -j4" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make install" || exit /B
|