Update README.md

This commit is contained in:
Gabi Melman 2019-05-29 00:53:50 +03:00 committed by GitHub
parent 6586f3ed29
commit 1e105f88ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,11 @@ Very fast, header only/statically compiled, C++ logging library. [![Build Status
* Copy the source [folder](https://github.com/gabime/spdlog/tree/v1.x/include/spdlog) to your build tree and use a C++11 compiler.
### Static lib version (recommended)
spdlog now supports compiling as a static lib for much faster compile times.
* spdlog now supports compiling as a static lib for much faster compile times.
* Copy and add [src/spdlog.cpp](https://github.com/gabime/spdlog/tree/v1.x/src/spdlog.cpp) to your build.
* Pass the `-DSPDLOG_COMPILED_LIB` to the compiler (and -lspdlog to the linker)
or use CMake:
* or use CMake:
* Build `libspdlog.a`: ```cmake ..```
* Use it ```target_link_libraries(example spdlog::spdlog)```
* see [example](https://github.com/gabime/spdlog/tree/v1.x/include/spdlog/example/CMakeLists.txt)