From 8342f96d679c53fda46cc5a532c4c59c8c9d3187 Mon Sep 17 00:00:00 2001 From: Ismael Rodriguez Espigares <7013638+ismaelresp@users.noreply.github.com> Date: Fri, 12 Feb 2021 15:16:13 +0100 Subject: [PATCH] fixed C++14 requirement in BUILDING.md fixed C++14 requirement from version 3.12.1 instead of 3.9.1 --- BUILDING.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index acc750672..0e2333206 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -3,10 +3,13 @@ DB Browser for SQLite requires Qt as well as SQLite. For more information on Qt please consult http://www.qt.io and for SQLite please see https://sqlite.org/. -Please note that all versions after 3.9.1 will require: -* Qt 5.5 or later, however we advise you to use 5.7 or later +Please note that all versions after 3.12.1 will require: * A C++ compiler with support for C++14 or later +All versions after 3.9.1 will require: +* Qt 5.5 or later, however we advise you to use 5.7 or later +* A C++ compiler with support for C++11 or later + Without these or with older versions you won't be able to compile DB Browser for Sqlite anymore. This applies to all platforms. However, most likely you won't have to worry about these as most systems meet these requirements today.