aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.bat b/build.bat
index 859a75c..944c2ed 100644
--- a/build.bat
+++ b/build.bat
@@ -1 +1,7 @@
-odin build . -out:statics.exe && statics.exe "test-data.ics" -i 2025-08 -v -s Test \ No newline at end of file
+odin build . -debug -out:statics.exe
+
+if %ERRORLEVEL% == 0 (
+ statics.exe "test-data.ics" -i 2025-08 -v -s Test
+ mkdir release
+ odin build . -o:speed -out:release/statics.exe
+)