aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2025-06-24 21:29:22 +0200
committerDanielGavin <danielgavin5@hotmail.com>2025-06-24 21:29:22 +0200
commit8ada3b6b2975e7b471848e6024837fe2b7edc157 (patch)
tree27312acb43aa6f5d950c4f495f786d0f2ab6bb7d /build.bat
parentbe08855c0a96ffff4f577fa5ac703853422ca153 (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.bat24
1 files changed, 12 insertions, 12 deletions
diff --git a/build.bat b/build.bat
index e29dde3..4eb1916 100644
--- a/build.bat
+++ b/build.bat
@@ -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
+)