From 06c7984a163388db3f8283347a246dba0328b3e2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 17 Jul 2022 13:41:40 +0200 Subject: Move all client headers and sources to public/ directory. --- test/Makefile | 4 ++-- test/test.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 500514d5..9ad48e66 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,14 +3,14 @@ TRACYFLAGS := CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE $(TRACYFLAGS) CXXFLAGS := $(CFLAGS) -std=gnu++11 DEFINES += -INCLUDES := +INCLUDES := -I../public/tracy LIBS := -lpthread -ldl LDFLAGS := -rdynamic IMAGE := tracy_test SRC := \ test.cpp \ - ../TracyClient.cpp + ../public/TracyClient.cpp OBJ := $(SRC:%.cpp=%.o) diff --git a/test/test.cpp b/test/test.cpp index 51cad692..3e7dcc04 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -2,7 +2,7 @@ #include #include #include -#include "../Tracy.hpp" +#include "Tracy.hpp" #include "../common/TracySystem.hpp" #define STB_IMAGE_IMPLEMENTATION -- cgit v1.2.3