tess 1.0.0
Performance-first tile and path simulation substrate
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
18namespace tess {
19
21struct version {
22 int major = 0;
23 int minor = 0;
24 int patch = 0;
25 std::string_view prerelease{};
26};
27
29inline 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
Definition version.h:21