mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
18 lines
350 B
C++
18 lines
350 B
C++
|
//
|
||
|
// 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
|