gecko-dev/third_party/highway/run_tests.bat
2021-05-21 14:38:30 +00:00

21 lines
254 B
Batchfile

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