aboutsummaryrefslogtreecommitdiff
path: root/build.bat
blob: ce3da496189f1309e83d06670da7cb56432f259f (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
) else if "%1" == "single_test" (
    odin test tests -collection:src=src -define:ODIN_TEST_NAMES=%2 -debug
) else if "%1" == "debug" (
    odin build src\ -show-timings  -collection:src=src  -microarch:native -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
)