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.
28 lines
604 B
C
28 lines
604 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(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 "bundled/core.h"
|
|
#include "bundled/format.h"
|
|
#else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
|
|
#include <fmt/core.h>
|
|
#include <fmt/format.h>
|
|
#endif
|