tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CONFIG_VERSION_HPP
5#define TETL_CONFIG_VERSION_HPP
6
7/// \brief The major release version
8// NOLINTNEXTLINE(modernize-macro-to-enum)
9#define TETL_VERSION_MAJOR 0
10
11/// \brief The minor release version
12// NOLINTNEXTLINE(modernize-macro-to-enum)
13#define TETL_VERSION_MINOR 1
14
15/// \brief The patch release version
16// NOLINTNEXTLINE(modernize-macro-to-enum)
17#define TETL_VERSION_PATCH 0
18
19/// \brief The library version as a string literal
20#define TETL_VERSION_STRING "0.1.0"
21
22#if defined(__STDC_HOSTED__)
23 #define TETL_HOSTED
24#else
25 #define TETL_FREESTANDING
26#endif
27
28#endif // TETL_CONFIG_VERSION_HPP