Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
54be9bd8
Commit
54be9bd8
authored
Mar 06, 2020
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use brackets to include spdlog in srcs
parent
06d02996
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
28 deletions
+30
-28
src/async.cpp
src/async.cpp
+5
-4
src/cfg.cpp
src/cfg.cpp
+1
-1
src/color_sinks.cpp
src/color_sinks.cpp
+3
-3
src/file_sinks.cpp
src/file_sinks.cpp
+5
-4
src/fmt.cpp
src/fmt.cpp
+1
-1
src/spdlog.cpp
src/spdlog.cpp
+12
-12
src/stdout_sinks.cpp
src/stdout_sinks.cpp
+3
-3
No files found.
src/async.cpp
View file @
54be9bd8
...
...
@@ -5,8 +5,9 @@
#error Please define SPDLOG_COMPILED_LIB to compile this file.
#endif
#include "spdlog/async.h"
#include "spdlog/async_logger-inl.h"
#include "spdlog/details/periodic_worker-inl.h"
#include "spdlog/details/thread_pool-inl.h"
#include <spdlog/async.h>
#include <spdlog/async_logger-inl.h>
#include <spdlog/details/periodic_worker-inl.h>
#include <spdlog/details/thread_pool-inl.h>
template
class
spdlog
::
details
::
mpmc_blocking_queue
<
spdlog
::
details
::
async_msg
>;
\ No newline at end of file
src/cfg.cpp
View file @
54be9bd8
...
...
@@ -5,4 +5,4 @@
#error Please define SPDLOG_COMPILED_LIB to compile this file.
#endif
#include "spdlog/cfg/helpers-inl.h"
\ No newline at end of file
#include <spdlog/cfg/helpers-inl.h>
\ No newline at end of file
src/color_sinks.cpp
View file @
54be9bd8
...
...
@@ -7,13 +7,13 @@
#include <mutex>
#include
"spdlog/details/null_mutex.h"
#include
"spdlog/async.h"
#include
<spdlog/details/null_mutex.h>
#include
<spdlog/async.h>
//
// color sinks
//
#ifdef _WIN32
#include
"spdlog/sinks/wincolor_sink-inl.h"
#include
<spdlog/sinks/wincolor_sink-inl.h>
template
class
spdlog
::
sinks
::
wincolor_sink
<
spdlog
::
details
::
console_mutex
>;
template
class
spdlog
::
sinks
::
wincolor_sink
<
spdlog
::
details
::
console_nullmutex
>;
template
class
spdlog
::
sinks
::
wincolor_stdout_sink
<
spdlog
::
details
::
console_mutex
>;
...
...
src/file_sinks.cpp
View file @
54be9bd8
...
...
@@ -5,14 +5,15 @@
#error Please define SPDLOG_COMPILED_LIB to compile this file.
#endif
#include <spdlog/details/null_mutex.h>
#include <spdlog/details/file_helper-inl.h>
#include <spdlog/sinks/basic_file_sink-inl.h>
#include <mutex>
#include "spdlog/details/null_mutex.h"
#include "spdlog/details/file_helper-inl.h"
#include "spdlog/sinks/basic_file_sink-inl.h"
template
class
spdlog
::
sinks
::
basic_file_sink
<
std
::
mutex
>;
template
class
spdlog
::
sinks
::
basic_file_sink
<
spdlog
::
details
::
null_mutex
>;
#include
"spdlog/sinks/rotating_file_sink-inl.h"
#include
<spdlog/sinks/rotating_file_sink-inl.h>
template
class
spdlog
::
sinks
::
rotating_file_sink
<
std
::
mutex
>;
template
class
spdlog
::
sinks
::
rotating_file_sink
<
spdlog
::
details
::
null_mutex
>;
\ No newline at end of file
src/fmt.cpp
View file @
54be9bd8
...
...
@@ -7,7 +7,7 @@
// All rights reserved.
#if !defined(SPDLOG_FMT_EXTERNAL)
#include
"spdlog/fmt/bundled/format-inl.h"
#include
<spdlog/fmt/bundled/format-inl.h>
FMT_BEGIN_NAMESPACE
namespace
internal
{
...
...
src/spdlog.cpp
View file @
54be9bd8
...
...
@@ -5,18 +5,18 @@
#error Please define SPDLOG_COMPILED_LIB to compile this file.
#endif
#include
"spdlog/spdlog-inl.h"
#include
"spdlog/common-inl.h"
#include
"spdlog/details/backtracer-inl.h"
#include
"spdlog/details/registry-inl.h"
#include
"spdlog/details/os-inl.h"
#include
"spdlog/details/pattern_formatter-inl.h"
#include
"spdlog/details/log_msg-inl.h"
#include
"spdlog/details/log_msg_buffer-inl.h"
#include
"spdlog/logger-inl.h"
#include
"spdlog/sinks/sink-inl.h"
#include
"spdlog/sinks/base_sink-inl.h"
#include
"spdlog/details/null_mutex.h"
#include
<spdlog/spdlog-inl.h>
#include
<spdlog/common-inl.h>
#include
<spdlog/details/backtracer-inl.h>
#include
<spdlog/details/registry-inl.h>
#include
<spdlog/details/os-inl.h>
#include
<spdlog/details/pattern_formatter-inl.h>
#include
<spdlog/details/log_msg-inl.h>
#include
<spdlog/details/log_msg_buffer-inl.h>
#include
<spdlog/logger-inl.h>
#include
<spdlog/sinks/sink-inl.h>
#include
<spdlog/sinks/base_sink-inl.h>
#include
<spdlog/details/null_mutex.h>
#include <mutex>
...
...
src/stdout_sinks.cpp
View file @
54be9bd8
...
...
@@ -7,9 +7,9 @@
#include <mutex>
#include
"spdlog/details/null_mutex.h"
#include
"spdlog/async.h"
#include
"spdlog/sinks/stdout_sinks-inl.h"
#include
<spdlog/details/null_mutex.h>
#include
<spdlog/async.h>
#include
<spdlog/sinks/stdout_sinks-inl.h>
template
class
spdlog
::
sinks
::
stdout_sink_base
<
spdlog
::
details
::
console_mutex
>;
template
class
spdlog
::
sinks
::
stdout_sink_base
<
spdlog
::
details
::
console_nullmutex
>;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment