stlab
2.3.0
Modern, modular C++ algorithms, data structures, and concurrency primitives
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1
/*
2
Copyright 2015-2021 Adobe
3
Distributed under the Boost Software License, Version 1.0.
4
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
*/
6
7
// See http://www.stlab.cc for documentation
8
9
#ifndef STLAB_VERSION_HPP
10
#define STLAB_VERSION_HPP
11
18
19
#include <stlab/config.hpp>
20
25
26
// These version numbers are automatically generated from the CMake project version.
27
33
#define STLAB_VERSION STLAB_VERSION_MAJOR() * 100000 + STLAB_VERSION_MINOR() * 100 + STLAB_VERSION_PATCH()
34
39
40
#if STLAB_VERSION_PATCH() == 0
41
#define STLAB_LIB_VERSION STLAB_STRINGIZE(STLAB_VERSION_MAJOR()) "_" STLAB_STRINGIZE(STLAB_VERSION_MINOR())
42
#else
43
#define STLAB_LIB_VERSION STLAB_STRINGIZE(STLAB_VERSION_MAJOR()) "_" STLAB_STRINGIZE(STLAB_VERSION_MINOR()) "_" STLAB_STRINGIZE(STLAB_VERSION_PATCH())
44
#endif
45
47
48
#endif
stlab
version.hpp
Generated by
1.16.1