1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move tracy version to a separate header.

This commit is contained in:
Bartosz Taudul
2018-07-29 14:20:44 +02:00
parent ccc5c37af5
commit 12b90d1630
4 changed files with 21 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
enum { Minor = 3 };
enum { Patch = 200 };
}
}
#endif