1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move all client headers and sources to public/ directory.

This commit is contained in:
Bartosz Taudul
2022-07-17 13:41:40 +02:00
parent c3c799ebc4
commit 06c7984a16
114 changed files with 476 additions and 396 deletions
+2 -2
View File
@@ -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)
+1 -1
View File
@@ -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