Major refactoring to fix spaghetti code, hook sanitizers in when debug building, and set up window surfaces.

This commit is contained in:
2024-10-06 04:35:53 -05:00
parent 9a6a351e23
commit 3e0206b581
8 changed files with 185 additions and 147 deletions

View File

@@ -1,6 +1,6 @@
CPPFLAGS=-g
LDFLAGS=-lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
DEBUGFLAGS=-DDEBUG
DEBUGFLAGS=-DDEBUG -fsanitize=address
SRC=$(shell find . -name *.cpp)
OBJ=$(SRC:%.cpp=%.o)