Mention the dependency on C++17.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
tastytea 2020-01-17 17:29:44 +01:00
parent dc706ab41f
commit d8582f33c1
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 5 additions and 1 deletions

View File

@ -107,7 +107,8 @@ yum install ./libmastodonpp*.rpm
==== Dependencies
* Tested OS: Linux
* C++ compiler (tested: link:{uri-gcc}[GCC] 7/8/9, link:{uri-clang}[clang] 6/7)
* C\++ compiler with C++17 support (tested: link:{uri-gcc}[GCC] 7/8/9,
link:{uri-clang}[clang] 6/7)
* link:{uri-cmake}[CMake] (at least: 3.9)
* link:{uri-libcurl}[libcurl] (at least: 7.56)
* Optional

View File

@ -46,6 +46,9 @@
*
* Or compile your code with `g++ $(pkg-config --cflags --libs mastodonpp)`.
*
* Since we use C++17 features in the headers of this library, your program
* needs to be compiled as C++17 or higher too.
*
* @subsection example Example
*
* @code