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
935b3de2
Unverified
Commit
935b3de2
authored
Jun 03, 2019
by
Gabi Melman
Committed by
GitHub
Jun 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update INSTALL
parent
abc03595
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
INSTALL
INSTALL
+4
-2
No files found.
INSTALL
View file @
935b3de2
Header only version:
Header only version:
==================================================================
==================================================================
Just copy the files to your build tree and use a C++11 compiler.
Just copy the files to your build tree and use a C++11 compiler.
or
Or use CMake:
"
"
add_executable(example_header_only example.cpp)
add_executable(example_header_only example.cpp)
target_link_libraries(example_header_only spdlog::spdlog_header_only)
target_link_libraries(example_header_only spdlog::spdlog_header_only)
...
@@ -9,11 +9,13 @@ target_link_libraries(example_header_only spdlog::spdlog_header_only)
...
@@ -9,11 +9,13 @@ target_link_libraries(example_header_only spdlog::spdlog_header_only)
Compiled library version:
Compiled library version:
==================================================================
==================================================================
CMake:
"
"
add_executable(example example.cpp)
add_executable(example example.cpp)
target_link_libraries(example spdlog::spdlog)
target_link_libraries(example spdlog::spdlog)
"
"
or copy src/spdlog.cpp to your build tree and pass the -DSPDLOG_COMPILED_LIB to the compiler.
Or copy src/spdlog.cpp to your build tree and pass the -DSPDLOG_COMPILED_LIB to the compiler.
Tested on:
Tested on:
gcc 4.8.1 and above
gcc 4.8.1 and above
...
...
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