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
3#ifndef TETL_CONFIG_VERSION_HPP
4#define TETL_CONFIG_VERSION_HPP
5
7// NOLINTNEXTLINE(modernize-macro-to-enum)
8#define TETL_VERSION_MAJOR 0
9
11// NOLINTNEXTLINE(modernize-macro-to-enum)
12#define TETL_VERSION_MINOR 1
13
15// NOLINTNEXTLINE(modernize-macro-to-enum)
16#define TETL_VERSION_PATCH 0
17
19#define TETL_VERSION_STRING "0.1.0"
20
21#if defined(__STDC_HOSTED__)
22 #define TETL_HOSTED
23#else
24 #define TETL_FREESTANDING
25#endif
26
27#endif // TETL_CONFIG_VERSION_HPP