blob: e29dde37f1623e43559af4ca12b792dbb68891b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@echo off
setlocal enabledelayedexpansion
if "%1" == "test" (
odin test tests -collection:src=src -debug -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
) else if "%1" == "single_test" (
odin test tests -collection:src=src -define:ODIN_TEST_NAMES=%2 -define:ODIN_TEST_TRACK_MEMORY=false -debug
) else if "%1" == "debug" (
odin build src\ -show-timings -microarch:native -collection:src=src -out:ols.exe -o:minimal -no-bounds-check -use-separate-modules -debug
) else (
odin build src\ -show-timings -microarch:native -collection:src=src -out:ols.exe -o:speed -no-bounds-check
)
|