mirror of
https://github.com/gabime/spdlog.git
synced 2025-04-29 12:03:53 +00:00
40 lines
946 B
C
40 lines
946 B
C
//
|
|
// Copyright(c) 2016-2018 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// Include a bundled header-only copy of fmtlib or an external one.
|
|
// By default spdlog include its own copy.
|
|
//
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
#endif // __GNUC__ || __clang__
|
|
|
|
|
|
#if !defined(SPDLOG_FMT_EXTERNAL)
|
|
#ifdef SPDLOG_HEADER_ONLY
|
|
#ifndef FMT_HEADER_ONLY
|
|
#define FMT_HEADER_ONLY
|
|
#endif
|
|
#endif
|
|
#ifndef FMT_USE_WINDOWS_H
|
|
#define FMT_USE_WINDOWS_H 0
|
|
#endif
|
|
#include <spdlog/fmt/bundled/core.h>
|
|
#include <spdlog/fmt/bundled/format.h>
|
|
#else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
|
|
#include <fmt/core.h>
|
|
#include <fmt/format.h>
|
|
#endif
|
|
|
|
// pop warnings supressions
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#pragma GCC diagnostic pop
|
|
#endif
|