diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-25 14:53:59 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-25 14:54:09 +0200 |
commit | b978ba09ca1d0a1c07839c1dfb0b10df2f011795 (patch) | |
tree | ba98a8508f9ecb8e2cca26ba61ffe2e1d0357952 | |
parent | 160b5ac92a846038372225ab79e29166fd152949 (diff) | |
download | EpisodeBrowser-b978ba09ca1d0a1c07839c1dfb0b10df2f011795.tar.gz |
Use _DEBUG instead of DEBUG.
This is what Visual Studio uses for its debug builds by default.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ OBJ += b/win.obj CC = gcc CFLAGS = -DUNICODE -D_UNICODE -CFLAGS += -DDEBUG +CFLAGS += -D_DEBUG CFLAGS += -std=c++17 -mwindows -O0 CFLAGS += -IC:/msys64/mingw64/include/libxml2 CFLAGS += -Wall -Wextra -Wpedantic -Wno-missing-field-initializers -Wno-parentheses |