diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | build.sh | 14 |
2 files changed, 11 insertions, 4 deletions
@@ -1,2 +1,3 @@ bin/* compile_commands.json +build_ops @@ -1,14 +1,20 @@ #!/bin/bash -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. ARM=0 # Compile on ARM machines. + +OPTIMIZATION="-O2" # Enable optimization. +DEBUG=0 # Compile with debug UI. +IMGUI=1 # Compile ImGui libs. Our custom ImGui functions still compile on zero. +THREADED=1 # Compile with threading. Useful to disable when stepping through the renderer. PACKEDRGB=0 # Use 4x4 chunks for the software rasterizer. Isn't actually faster at the moment. PERF=0 # Print cycle stats. +# Add flag overrides to this file (it's untracked on the tree) +if test -f build_ops; then + source build_ops +fi + FFMPEG_LIBS=" libavdevice libavformat |