spdlog/include/spdlog/version.h

11 lines
330 B
C
Raw Normal View History

2019-06-04 05:09:16 +08:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2018-07-25 05:03:27 +08:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#define SPDLOG_VER_MAJOR 1
2020-03-06 21:37:50 +08:00
#define SPDLOG_VER_MINOR 6
2019-12-05 07:21:58 +08:00
#define SPDLOG_VER_PATCH 0
2018-07-25 05:03:27 +08:00
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)