blob: 26600a2c4f7029e6912e48131269e7d561799cae [file] [log] [blame]
@echo off
REM Switch directory of this batch file
cd %~dp0
if not exist build_win mkdir build_win
cd build_win
cmake .. -DHWY_WARNINGS_ARE_ERRORS:BOOL=ON -G Ninja || goto error
ninja || goto error
ctest -j || goto error
cd ..
echo Success
goto end
:error
echo Failure
exit /b 1
:end