diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-06-24 21:29:22 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-06-24 21:29:22 +0200 |
| commit | 8ada3b6b2975e7b471848e6024837fe2b7edc157 (patch) | |
| tree | 27312acb43aa6f5d950c4f495f786d0f2ab6bb7d /build.bat | |
| parent | be08855c0a96ffff4f577fa5ac703853422ca153 (diff) | |
Fixed issue struct literals with no fields newlining. This should only
happen if there is a comment.
Diffstat (limited to 'build.bat')
| -rw-r--r-- | build.bat | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,12 +1,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
-)
+@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 +) |