From 3e06b2e4f9db40deff5b7dd6441d1a550b2558e2 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Wed, 20 Jan 2021 15:40:36 +1100 Subject: [PATCH] Add C++14 to our macOS BUILDING instructions --- BUILDING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index f4a1334c6..acc750672 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -146,7 +146,7 @@ its name (eg ~/tmp/foo'), as compiling will error out. And compiling it: $ cd sqlitebrowser - $ qmake + $ qmake CONFIG+="c++14" $ make $ brew unlink sqlitefts5 $ mv src/DB\ Browser\ for\ SQLite.app /Applications/ @@ -159,11 +159,11 @@ list, ready to launch. 'make' step complaining about no targets. This seems to be solvable by running: - $ qmake -spec macx-g++ + $ qmake -spec macx-g++ CONFIG+="c++14" or: - $ qmake -spec macx-llvm + $ qmake -spec macx-llvm CONFIG+="c++14" (before the 'make' step)