mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
426 B
C
11 lines
426 B
C
![]()
5 years ago
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
||
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
constexpr int SPDLOG_VER_MAJOR{@PROJECT_VERSION_MAJOR@};
|
||
|
constexpr int SPDLOG_VER_MINOR{@PROJECT_VERSION_MINOR@};
|
||
|
constexpr int SPDLOG_VER_PATCH{@PROJECT_VERSION_PATCH@};
|
||
|
|
||
|
constexpr int SPDLOG_VERSION{SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH};
|