tracy/TracyClient.cpp
Bartosz Taudul 8a6e4d2971 Change TRACY_DISABLE to TRACY_ENABLE.
By default tracy is now disabled.
2017-10-16 21:34:39 +02:00

25 lines
460 B
C++

//
// Tracy profiler
// ----------------
//
// For fast integration, compile and
// link with this source file (and none
// other).
//
// Define TRACY_ENABLE to enable profiler.
#ifdef TRACY_ENABLE
#include "client/TracyProfiler.cpp"
#include "common/tracy_lz4.cpp"
#include "common/TracySocket.cpp"
#include "common/TracySystem.cpp"
#include "client/tracy_rpmalloc.cpp"
#ifdef _MSC_VER
# pragma comment(lib, "ws2_32.lib")
#endif
#endif