summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2020-11-10 12:45:58 +0100
committerKai Koehne <kai.koehne@qt.io>2020-11-10 14:27:20 +0100
commit71463b9baea6d5c95a2500748536fd6f7bcb036d (patch)
tree22a30dad54dacd056f0ebc69c502fc852d4c074b /doc/src/snippets
parent5bd66a283bb0ad00f09a2ca4c5b0a26746bcb666 (diff)
macOS: Update macos-building.html for Qt 6
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ø <tor.arne.vestbo@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/code/doc_src_installation.qdoc4
1 files changed, 2 insertions, 2 deletions
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]