mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
13 lines
344 B
Batchfile
13 lines
344 B
Batchfile
@echo off
|
|
set COMMON=-show-timings -no-bounds-check -vet -strict-style
|
|
set PATH_TO_ODIN==..\..\odin
|
|
|
|
echo ---
|
|
echo Running vendor:botan tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run botan %COMMON% -out:vendor_botan.exe || exit /b
|
|
|
|
echo ---
|
|
echo Running vendor:glfw tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run glfw %COMMON% -out:vendor_glfw.exe || exit /b |