aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted-linux.rst
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-02-08 10:45:34 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-02-08 16:08:28 +0100
commite1aee5ff734387c6d1a91df0f17d022042f5d927 (patch)
treece55c52fe740e226cbbf6b9773cb3d5c71cd0aa4 /sources/pyside6/doc/gettingstarted-linux.rst
parent3103f4f2f2f8f2d11b492725171d3380b2ca9507 (diff)
Documentation: Remove mentions of qmake
It is replaced by qtpaths. Pick-to: 6.2 Task-number: PYSIDE-1814 Change-Id: I0aafa0a8ebfc6fc9fe4eb4887dc740c9ea0e5767 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside6/doc/gettingstarted-linux.rst')
-rw-r--r--sources/pyside6/doc/gettingstarted-linux.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/pyside6/doc/gettingstarted-linux.rst b/sources/pyside6/doc/gettingstarted-linux.rst
index 34c22bd4d..dbd81c6dd 100644
--- a/sources/pyside6/doc/gettingstarted-linux.rst
+++ b/sources/pyside6/doc/gettingstarted-linux.rst
@@ -56,19 +56,19 @@ Checking out the version that we want to build, for example 6.0::
Building PySide
~~~~~~~~~~~~~~~
-Check your Qt installation path, to specifically use that version of qmake to build PySide.
-for example, :command:`/opt/Qt/6.0.0/gcc_64/bin/qmake`.
+Check your Qt installation path, to specifically use that version of qtpaths to build PySide.
+for example, :command:`/opt/Qt/6.0.0/gcc_64/bin/qtpaths`.
Build can take a few minutes, so it is recommended to use more than one CPU core::
- python setup.py build --qmake=/opt/Qt/6.0.0/gcc_64/bin/qmake --build-tests --ignore-git --parallel=8
+ python setup.py build --qtpaths=/opt/Qt/6.0.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Installing PySide
~~~~~~~~~~~~~~~~~
To install on the current directory, just run::
- python setup.py install --qmake=/opt/Qt/6.0.0/gcc_64/bin/qmake --build-tests --ignore-git --parallel=8
+ python setup.py install --qtpaths=/opt/Qt/6.0.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Test installation
~~~~~~~~~~~~~~~~~