summaryrefslogtreecommitdiffstats
path: root/src/core/version.hh
blob: d040fa56b2b616179f1db79e4b9f45e9662efa82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: version.hh
// Description: Version information

#ifndef CORE_VERSION_HH
#define CORE_VERSION_HH
#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

#endif