diff --git a/Build.cmake b/Build.cmake index 8fc1cf0..726f230 100644 --- a/Build.cmake +++ b/Build.cmake @@ -86,7 +86,7 @@ IF(APPLE) SET_TARGET_PROPERTIES(${G3LOG_LIBRARY} PROPERTIES MACOSX_RPATH TRUE) ENDIF() -# require here some proxy for c++14 standard to avoid problems TARGET_PROPERTY CXX_STANDARD +# require here some proxy for c++14/c++17? standard to avoid problems TARGET_PROPERTY CXX_STANDARD TARGET_COMPILE_FEATURES(${G3LOG_LIBRARY} PUBLIC cxx_variable_templates) TARGET_INCLUDE_DIRECTORIES(${G3LOG_LIBRARY} diff --git a/docs/building.md b/docs/building.md index 732676a..cae52f5 100644 --- a/docs/building.md +++ b/docs/building.md @@ -15,7 +15,7 @@ cd build ``` ## Prerequisites -Assume you have got your shiny C++14 compiler installed, you also need these tools to build g3log from source: +You also need these tools to build g3log from source: - CMake (*Required*) g3log uses CMake as a one-stop solution for configuring, building, installing, packaging and testing on Windows, Linux and OSX. diff --git a/docs/g3log.md b/docs/g3log.md index 30cd2ce..560bb8b 100644 --- a/docs/g3log.md +++ b/docs/g3log.md @@ -67,7 +67,11 @@ The logger will catch certain fatal events *(Linux/OSX: signals, Windows: fatal 8. The code is given for free as public domain. This gives the option to change, use, and do whatever with it, no strings attached. -9. *[g3log](https://github.com/KjellKod/g3log)* : is made to facilitate easy adding of custom log receivers. Its tested on at least the following platforms with **Linux**(Clang/gcc), **Windows** (mingw, visual studio) and **OSX**. My recommendation is to go with g3log if you have full C++14 support (C++11 support up to version: https://github.com/KjellKod/g3log/releases/tag/1.3.1). +9. *[g3log](https://github.com/KjellKod/g3log)* : is made to facilitate easy adding of custom log receivers. Its tested on at least the following platforms with **Linux**(Clang/gcc), **Windows** (mingw, visual studio) and **OSX**. My recommendation is to go with g3log if you have full C++17 support + +C++11 support up to version: https://github.com/KjellKod/g3log/releases/tag/1.3.1). + +C++14 support up to version: https://github.com/KjellKod/g3log/releases/tag/1.3.4 ## G3log with sinks