From d4d524c8dbc956a4b60932c05bc05c963174a437 Mon Sep 17 00:00:00 2001 From: Ivan Tkachenko Date: Thu, 28 Oct 2021 03:33:18 +0300 Subject: [PATCH] Fix code formatting in README Change-Id: I333cfd215f6a5d54f2e1098a7a68b76a8dc7af4d Reviewed-by: Paul Wicking --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 205ff1d1..462651bc 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ http://wiki.qt.io/Get_The_Source Linux, Mac: ----------- -```` +``` cd / ./configure -prefix $PWD/qtbase cmake --build . -```` +``` Windows: -------- @@ -38,11 +38,11 @@ Windows: * Python version 2.7 or later [http://www.activestate.com/activepython/] * Ruby version 1.9.3 or later [http://rubyinstaller.org/] -```` +``` cd \ configure -prefix %CD%\qtbase cmake --build . -```` +``` More details follow. @@ -61,18 +61,18 @@ Some relevant configure options (see configure -help): Example for a release build: -```` +``` ./configure -prefix $PWD/qtbase cmake --build . -```` +``` Example for a developer build: (enables more autotests, builds debug version of libraries, ...) -```` +``` ./configure -developer-build cmake --build . -```` +``` See output of `./configure -help` for documentation on various options to configure. @@ -81,13 +81,13 @@ cmake --build . by default in the build system. It is possible to build selected repositories with their dependencies by doing - a `ninja /all'. For example, to build only qtdeclarative, + a `ninja /all`. For example, to build only qtdeclarative, and the modules it depends on: -```` +``` ./configure ninja qtdeclarative/all -```` +``` This can save a lot of time if you are only interested in a subset of Qt.