docs: Specify Qt version as 5.x in macOS build component installation instruction

The Qt version in the Homebrew Formulae DB currently points to 6.x.

However, since our project officially supports the 5.x version,
we have changed to guide to install the 5.x version when installing the build components on macOS.
This commit is contained in:
SeongTae Jeong
2022-11-30 15:35:06 +09:00
parent b93912124f
commit 420e712d40

View File

@@ -137,7 +137,7 @@ It requires SQLite and Qt 5.x to be installed first. These are the
$ brew tap sqlitebrowser/sqlite3
$ brew install sqlitefts5
$ brew install qt
$ brew install qt@5
$ brew install cmake
$ brew link sqlitefts5 --force
@@ -153,7 +153,7 @@ And compiling it:
$ cd sqlitebrowser
$ mkdir build # You can easily make a fresh build again by removing this directory
$ cd build
$ cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt ..
$ cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt@5 ..
$ cmake --build .
$ brew unlink sqlitefts5
$ mv sqlitebrowser.app /Applications/DB\ Browser\ for\ SQLite.app