tess
1.0.0
Performance-first tile and path simulation substrate
Toggle main menu visibility
Loading...
Searching...
No Matches
version.h
1
#pragma once
2
3
#include <string_view>
4
5
// clang-format off
7
#define TESS_VERSION_MAJOR 1
9
#define TESS_VERSION_MINOR 0
11
#define TESS_VERSION_PATCH 0
13
#define TESS_VERSION_PRERELEASE ""
15
#define TESS_VERSION_STRING "1.0.0"
16
// clang-format on
17
18
namespace
tess {
19
21
struct
version
{
22
int
major = 0;
23
int
minor = 0;
24
int
patch = 0;
25
std::string_view prerelease{};
26
};
27
29
inline
constexpr
version
library_version{
30
TESS_VERSION_MAJOR,
31
TESS_VERSION_MINOR,
32
TESS_VERSION_PATCH,
33
TESS_VERSION_PRERELEASE,
34
};
35
36
}
// namespace tess
tess::version
Definition
version.h:21
build
docs-api
generated
include
tess
version.h
Generated by
1.17.0