From edb576e2f29a7d10c86a17c9478464b79cf57b0f Mon Sep 17 00:00:00 2001 From: Mattias Ajander <mattias@ajander.se> Date: Wed, 2 Apr 2025 18:01:20 +0200 Subject: [PATCH] Compile with -g for debug --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ace28ba..dd6b2a3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CXX = g++ -CXXFLAGS = -std=c++17 -Wall -Wextra -pedantic -I include +CXXFLAGS = -std=c++17 -Wall -Wextra -pedantic -I include -g # Directories SRC_DIR = source -- GitLab