summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-08-25 18:55:59 -0400
committerFox Caminiti <fox@foxcam.net>2022-08-25 18:55:59 -0400
commitb39c7374009d03d448e47e08ddabc30abeee5247 (patch)
treed1a022544720138f244c0bf9cbc1437ff50e589d /build.sh
parentae94b4b9fc5b4443f6d9eb6bb450de1def108cdb (diff)
minor fixes
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 61109c7..6ae9de1 100755
--- a/build.sh
+++ b/build.sh
@@ -1,7 +1,7 @@
#!/bin/bash
-OPTIMIZATION="-g" # Enable optimization.
-DEBUG=1 # Compile with debug UI.
+OPTIMIZATION="-O2" # Enable optimization.
+DEBUG=0 # Compile with debug UI.
IMGUI=0 # Compile ImGui libs. Our custom ImGui functions still compile on zero.
THREADED=1 # Compile with threading. Useful to disable when stepping through the renderer.
WINDOWS=0 # Compile for Windows with Mingw.