mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-30 02:19:35 +08:00
support for external fmtlib
This commit is contained in:
17
include/spdlog/fmt/ostr.h
Normal file
17
include/spdlog/fmt/ostr.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Copyright(c) 2016 Gabi Melman.
|
||||
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
// include external or bundled copy of fmtlib's ostream support
|
||||
//
|
||||
#if !defined(SPDLOG_FMT_EXTERNAL)
|
||||
#include <spdlog/fmt/fmt.h>
|
||||
#include <spdlog/fmt/bundled/ostream.h>
|
||||
#else
|
||||
#include <fmt/ostream.h>
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user