From 14cd87c42d7808238048519940a1beb123d58669 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 11 Oct 2017 02:09:52 +0200 Subject: [PATCH] Add (optional) fast-integration source file. --- TracyClient.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 TracyClient.cpp diff --git a/TracyClient.cpp b/TracyClient.cpp new file mode 100644 index 00000000..6600f639 --- /dev/null +++ b/TracyClient.cpp @@ -0,0 +1,17 @@ +// +// Tracy profiler +// ---------------- +// +// For fast integration, compile and +// link with this source file (and none +// other). +// + +#include "client/TracyProfiler.cpp" +#include "common/tracy_lz4.cpp" +#include "common/TracySocket.cpp" +#include "common/TracySystem.cpp" + +#ifdef _MSC_VER +# pragma comment(lib, "ws2_32.lib") +#endif