mirror of
https://github.com/wolfpld/tracy
synced 2025-04-28 20:23:51 +00:00
25 lines
460 B
C++
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
|