dolphin/Externals/WIL/scripts/init_all.cmd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
394 B
Batchfile
Raw Normal View History

2019-10-31 23:09:52 +00:00
@echo off
setlocal
setlocal EnableDelayedExpansion
2019-10-31 23:09:52 +00:00
:: NOTE: Architecture is picked up from the command window, so we can't control that here :(
set COMPILERS=clang msvc
set BUILD_TYPES=debug relwithdebinfo
2019-10-31 23:09:52 +00:00
for %%c in (%COMPILERS%) do (
for %%b in (%BUILD_TYPES%) do (
call %~dp0\init.cmd -c %%c -g ninja -b %%b %*
if !ERRORLEVEL! NEQ 0 ( goto :eof )
)
)