HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
version.hpp
1// Copyright Take Vos 2020.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include <string>
8
9namespace tt {
10
34
35inline version ttauri_version;
36inline version application_version;
37
38}
Definition version.hpp:11
int minor
Incremented on additive change.
Definition version.hpp:15
int git_commits_since_version_tag
The number of commits since the version tag.
Definition version.hpp:29
std::string name
Name of the application or library.
Definition version.hpp:20
bool git_local_changes
There are local changes.
Definition version.hpp:32
std::string git_commit
The git sha.
Definition version.hpp:26
std::string git_branch
Name of the git branch.
Definition version.hpp:23
int patch
Incremented on bug fixes.
Definition version.hpp:17
int major
Incremented on backward incompatible change.
Definition version.hpp:13