aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorIvan Tkachenko <me@ratijas.tk>2021-10-28 03:33:18 +0300
committerIvan Tkachenko <me@ratijas.tk>2021-10-28 16:29:13 +0300
commitd4d524c8dbc956a4b60932c05bc05c963174a437 (patch)
tree926f0878541f4fca2e7d958327f51134f0586161 /README.md
parentb58012809332eec8472c04e1a08e41b32f97587d (diff)
Fix code formatting in README
Change-Id: I333cfd215f6a5d54f2e1098a7a68b76a8dc7af4d Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files 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 <path>/<source_package>
./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 <path>\<source_package>
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 <repo-name>/all'. For example, to build only qtdeclarative,
+ a `ninja <repo-name>/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.