spdlog/include/spdlog/version.h

11 lines
330 B
C
Raw Permalink Normal View History

2019-06-03 17:09:16 -04:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2018-07-24 17:03:27 -04:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#define SPDLOG_VER_MAJOR 1
2019-06-10 12:19:29 -04:00
#define SPDLOG_VER_MINOR 4
2019-10-05 17:30:40 -04:00
#define SPDLOG_VER_PATCH 2
2018-07-24 17:03:27 -04:00
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)