Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-07-17 14:41:40 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-07-17 16:47:38 +0300
commit06c7984a163388db3f8283347a246dba0328b3e2 (patch)
tree50e0e3239fdc68ce7d627f88b1d062d18fb51790 /test
parentc3c799ebc4804904f622fc8e586a2e034992d7fc (diff)
Move all client headers and sources to public/ directory.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile4
-rw-r--r--test/test.cpp2
2 files changed, 3 insertions, 3 deletions
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 <mutex>
#include <thread>
#include <stdlib.h>
-#include "../Tracy.hpp"
+#include "Tracy.hpp"
#include "../common/TracySystem.hpp"
#define STB_IMAGE_IMPLEMENTATION