Skip to content

Commit

Permalink
Merge pull request qmlbook#112 from qmlbook/fix-ch04-advanced-link
Browse files Browse the repository at this point in the history
ch04: fixed link (fix qmlbook#54)
  • Loading branch information
e8johan authored Oct 6, 2021
2 parents 63d8292 + ca20784 commit 262b11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ch04-qmlstart/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ QML and Javascript are interpreted languages. This means that they do not have t

The QML engine uses just-in-time (JIT) compilation to improve performance. It also caches the intermediate output to avoid having to recompile. This works seamlessly for you as a developer. The only trace of this is that files ending with `qmlc` and `jsc` can be found next to the source files.

If you want to avoid the initial start-up penalty induced by the initial parsing you can also pre-compile your QML and Javascript. This requires you to put your code into a Qt resource file, and is described in detail in the [Compiling QML Ahead of Time](http://doc.qt.io/qt-6/qtquick-deployment.html#compiling-qml-ahead-of-time) chapter in the Qt documentation.
If you want to avoid the initial start-up penalty induced by the initial parsing you can also pre-compile your QML and Javascript. This requires you to put your code into a Qt resource file, and is described in detail in the [Compiling QML Ahead of Time](https://doc.qt.io/qt-6/qtquick-deployment.html#ahead-of-time-compilation) chapter in the Qt documentation.

0 comments on commit 262b11e

Please sign in to comment.