From 79b0ec2cf3f4ce2e79fb7c0ca2b9c3ee8bf583dd Mon Sep 17 00:00:00 2001 From: Bryan McNett <16126809+bmcnett@users.noreply.github.com> Date: Sat, 9 Nov 2024 15:01:59 -0800 Subject: [PATCH] enable PDB files for release builds enable PDB files for release builds --- makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makefile b/makefile index cd4789d4..6fa84e73 100644 --- a/makefile +++ b/makefile @@ -113,6 +113,9 @@ FLAGS = $(FLAGS) /Ob0 /Zi /Oy- DEFS = $(DEFS) -DMTY_VK_DEBUG !ELSE FLAGS = $(FLAGS) /O2 /GS- /Gw +!IFDEF RELEASE_PDB +FLAGS = $(FLAGS) /Zi +!ENDIF !ENDIF CFLAGS = $(INCLUDES) $(DEFS) $(FLAGS)