summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_resources.qdoc
blob: a2e515ce03aa4c1216f58d4856de75378a618401 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [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]