Fix test application flags.

This commit is contained in:
Bartosz Taudul 2022-08-16 14:12:22 +02:00
parent 72ad40698b
commit 3d9d242153
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -1,6 +1,5 @@
OPTFLAGS := -g3 -fmerge-constants OPTFLAGS := -g3 -fmerge-constants
TRACYFLAGS := CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE
CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE $(TRACYFLAGS)
CXXFLAGS := $(CFLAGS) -std=gnu++11 CXXFLAGS := $(CFLAGS) -std=gnu++11
DEFINES += DEFINES +=
INCLUDES := -I../public/tracy INCLUDES := -I../public/tracy
@ -19,7 +18,7 @@ LIBS += -lexecinfo
endif endif
ifeq ($(shell uname),Linux) ifeq ($(shell uname),Linux)
TRACYFLAGS += -DTRACY_DEBUGINFOD DEFINES += -DTRACY_DEBUGINFOD
LIBS += -ldebuginfod LIBS += -ldebuginfod
endif endif