2017-10-11 00:09:52 +00:00
|
|
|
//
|
|
|
|
// Tracy profiler
|
|
|
|
// ----------------
|
|
|
|
//
|
|
|
|
// For fast integration, compile and
|
|
|
|
// link with this source file (and none
|
|
|
|
// other).
|
|
|
|
//
|
|
|
|
|
2017-10-16 19:34:39 +00:00
|
|
|
// Define TRACY_ENABLE to enable profiler.
|
|
|
|
|
|
|
|
#ifdef TRACY_ENABLE
|
|
|
|
|
2017-10-11 00:09:52 +00:00
|
|
|
#include "client/TracyProfiler.cpp"
|
|
|
|
#include "common/tracy_lz4.cpp"
|
|
|
|
#include "common/TracySocket.cpp"
|
|
|
|
#include "common/TracySystem.cpp"
|
2017-10-14 15:28:55 +00:00
|
|
|
#include "client/tracy_rpmalloc.cpp"
|
2017-10-11 00:09:52 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma comment(lib, "ws2_32.lib")
|
|
|
|
#endif
|
2017-10-16 19:34:39 +00:00
|
|
|
|
|
|
|
#endif
|