mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-02 17:51:44 +01:00
14 lines
479 B
Batchfile
14 lines
479 B
Batchfile
@echo off
|
|
|
|
:: NOTE: Architecture is picked up from the command window, so we can't control that here :(
|
|
|
|
call %~dp0\init.cmd -c clang -g ninja -b debug %*
|
|
if %ERRORLEVEL% NEQ 0 ( goto :eof )
|
|
call %~dp0\init.cmd -c clang -g ninja -b relwithdebinfo %*
|
|
if %ERRORLEVEL% NEQ 0 ( goto :eof )
|
|
|
|
call %~dp0\init.cmd -c msvc -g ninja -b debug %*
|
|
if %ERRORLEVEL% NEQ 0 ( goto :eof )
|
|
call %~dp0\init.cmd -c msvc -g ninja -b relwithdebinfo %*
|
|
if %ERRORLEVEL% NEQ 0 ( goto :eof )
|