Change TRACY_DISABLE to TRACY_ENABLE.

By default tracy is now disabled.
This commit is contained in:
Bartosz Taudul
2017-10-16 21:34:39 +02:00
parent 518568a513
commit 8a6e4d2971
4 changed files with 16 additions and 4 deletions

View File

@@ -7,6 +7,10 @@
// other).
//
// Define TRACY_ENABLE to enable profiler.
#ifdef TRACY_ENABLE
#include "client/TracyProfiler.cpp"
#include "common/tracy_lz4.cpp"
#include "common/TracySocket.cpp"
@@ -16,3 +20,5 @@
#ifdef _MSC_VER
# pragma comment(lib, "ws2_32.lib")
#endif
#endif