libcryfs/vendor/spdlog/spdlog/fmt/fmt.h

28 lines
604 B
C
Raw Normal View History

2017-02-04 20:03:20 +01:00
//
2019-06-02 06:05:26 +02:00
// Copyright(c) 2016-2018 Gabi Melman.
2017-02-04 20:03:20 +01:00
// 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)
2019-10-13 18:08:37 +02:00
#ifdef SPDLOG_HEADER_ONLY
2017-02-04 20:03:20 +01:00
#ifndef FMT_HEADER_ONLY
#define FMT_HEADER_ONLY
#endif
2019-10-13 18:08:37 +02:00
#endif
2017-02-04 20:03:20 +01:00
#ifndef FMT_USE_WINDOWS_H
#define FMT_USE_WINDOWS_H 0
#endif
2019-06-02 06:05:26 +02:00
#include "bundled/core.h"
2018-04-22 10:06:52 +02:00
#include "bundled/format.h"
2019-10-13 18:08:37 +02:00
#else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
#include "fmt/core.h"
#include "fmt/format.h"
2018-04-22 10:06:52 +02:00
#endif