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