Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyClientDLL.cpp - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f8105947a72115f43e6de4410abe5ae20563c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//          Tracy profiler
//         ----------------
//
// On multi-DLL projects compile and
// link with this source file (and none
// other) in the executable and in
// DLLs / shared objects that link to
// the main DLL.
//

// Define TRACY_ENABLE to enable profiler.

#ifdef TRACY_ENABLE
#  ifndef TRACY_IMPORTS
#    define TRACY_IMPORTS 1
#  endif
#  include "common/TracySystem.cpp"
#endif