tracy/TracyClientDLL.cpp

20 lines
400 B
C++
Raw Normal View History

2018-07-30 16:12:42 +00:00
//
// 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"
2018-07-30 16:12:42 +00:00
#endif