Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
935b3de2
Unverified
Commit
935b3de2
authored
5 years ago
by
Gabi Melman
Committed by
GitHub
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update INSTALL
parent
abc03595
v1.5.0
v1.4.2
v1.4.1
v1.4.0
No related merge requests found
Hide 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
...
...
This diff is collapsed.
Click to expand it.
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