gecko-dev/third_party/highway/run_tests.bat

21 строка
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