From 716d928613ec4be540cd7902fa6407f918e06504 Mon Sep 17 00:00:00 2001 From: Lorenzo Torres Date: Wed, 5 Nov 2025 22:05:12 +0100 Subject: [PATCH] default build type is now DEBUG --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 37154f6..b98bdfb 100644 --- a/config.mk +++ b/config.mk @@ -5,7 +5,7 @@ CFLAGS := -Wall -Wextra -std=c99 -pedantic LIBS := -lm # Can be gl or vk GRAPHICS_BACKEND := vk - +DEBUG_BUILD=1 PLATFORM := $(shell uname) ifeq (${GRAPHICS_BACKEND},gl)