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
TRACYFLAGS :=
CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE $(TRACYFLAGS)
CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE
CXXFLAGS := $(CFLAGS) -std=gnu++11
DEFINES +=
INCLUDES := -I../public/tracy
@ -19,7 +18,7 @@ LIBS += -lexecinfo
endif
ifeq ($(shell uname),Linux)
TRACYFLAGS += -DTRACY_DEBUGINFOD
DEFINES += -DTRACY_DEBUGINFOD
LIBS += -ldebuginfod
endif