Fix missing header errors for SpdLog

This commit is contained in:
Amos 2022-01-14 15:36:51 +01:00
parent 6bbb16dcb9
commit 96ee434d4e
4 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ enum class async_msg_type
terminate
};
#include <details/log_msg_buffer.h>
#include <thirdparty/spdlog/include/details/log_msg_buffer.h>
// Async msg to move to/from the queue
// Movable only. should never be copied
struct async_msg : log_msg_buffer

View File

@ -7,8 +7,8 @@
#include <thirdparty/spdlog/include/sinks/stdout_color_sinks.h>
#endif
#include <logger.h>
#include <common.h>
#include <thirdparty/spdlog/include/logger.h>
#include <thirdparty/spdlog/include/common.h>
namespace spdlog {

View File

@ -41,5 +41,5 @@ std::shared_ptr<logger> stderr_color_st(const std::string &logger_name, color_mo
} // namespace spdlog
#ifdef SPDLOG_HEADER_ONLY
#include "thirdparty/spdlog/include/stdout_color_sinks-inl.h"
#include "thirdparty/spdlog/include/sinks/stdout_color_sinks-inl.h"
#endif

View File

@ -34,7 +34,7 @@ Windows Registry Editor Version 5.00
#include <thirdparty/spdlog/include/sinks/base_sink.h>
#include <thirdparty/spdlog/include/details/windows_include.h>
#include <thirdparty/spdlog/include/winbase.h>
#include <winbase.h>
#include <mutex>
#include <string>