From 71463b9baea6d5c95a2500748536fd6f7bcb036d Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 10 Nov 2020 12:45:58 +0100 Subject: macOS: Update macos-building.html for Qt 6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Advise to users to use cmake --build, cmake --install instead of make, make install. Also remove the mentioning of problems with parallel builds (is this still current)? Finally, remove the mentioning of the Fink / QMAKESPEC issue; The new Qt 6 build system doesn't use QMAKESPEC anymore. Change-Id: I5d1cee7d795c6b1d2cee022bc3049f6767561177 Reviewed-by: Tor Arne Vestbø Reviewed-by: Alexandru Croitor --- doc/src/snippets/code/doc_src_installation.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/src/snippets') diff --git a/doc/src/snippets/code/doc_src_installation.qdoc b/doc/src/snippets/code/doc_src_installation.qdoc index 44d9a7755..434727b33 100644 --- a/doc/src/snippets/code/doc_src_installation.qdoc +++ b/doc/src/snippets/code/doc_src_installation.qdoc @@ -62,12 +62,12 @@ cd /tmp/qt-everywhere-opensource-src-%VERSION% //! [2] -make +cmake --build . --parallel //! [2] //! [3] -make install +cmake --install . //! [3] -- cgit v1.2.3