blob: c033a3e0df387bb8db8684ad0e09173aef1e8d87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
namespace version
{
extern const unsigned short major;
extern const unsigned short minor;
extern const unsigned short patch;
} // namespace version
namespace version
{
extern const std::string_view commit;
extern const std::string_view branch;
extern const std::string_view triplet;
} // namespace version
namespace version
{
extern const std::string_view full;
} // namespace version
|