summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_resources.qdoc
blob: 70c2a7b7ab5aa669f0434375af7871322a6d8207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

//! [0]
<file alias="cut-img.png">images/cut.png</file>
//! [0]


//! [1]
<qresource prefix="/myresources">
    <file alias="cut-img.png">images/cut.png</file>
</qresource>
//! [1]


//! [2]
<qresource>
    <file>cut.jpg</file>
</qresource>
<qresource lang="fr">
    <file alias="cut.jpg">cut_fr.jpg</file>
</qresource>
//! [2]


//! [3]
rcc -binary myresource.qrc -o myresource.rcc
//! [3]

//! [4]
<file empty="true">Button.qml</file>
//! [4]