Increase minimum requirement to C++14

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2021-05-27 22:44:54 +02:00
parent 0b74e850fb
commit 2372770f6a
2 changed files with 5 additions and 5 deletions

View file

@ -206,5 +206,5 @@ To be a little more explicit, the common elements across the languages are:
We target Python 3 so that our test suite runs on the broadest set of platforms.
We can safely target C++11 because all the default compilers on our supported platforms are ready.
Feel free to use C++14 and C++17 provided that all build platforms support this.
We can safely target C++14 because all the default compilers on our supported platforms are ready.
Feel free to use C++17 and C++20 provided that all build platforms support this.

View file

@ -10,9 +10,9 @@ In order to build Timewarrior, you will need:
- cmake (See https://cmake.org)
- make
You will need a C++ compiler that supports full C++11, which includes:
- gcc 4.8.1 (released 2013-03-31)
- clang 3.3 (released 2013-06-17)
You will need a C++ compiler that supports full C++14, which includes:
- gcc 6.1
- clang 3.4
# Basic Installation