aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/imports/qbs/base/QmlApp.qbs
blob: 2d1ce228c26610ce5b163844d41619ec7f1a6af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs.base 1.0

Product {
    type: ["application", "installed_content"]
    Depends { name: "qt.declarative" }
    Depends { name: "cpp" }
    property string appViewerPath: localPath + "/qmlapplicationviewer"
    cpp.includePaths: [appViewerPath]

    Group {
        files: [
            appViewerPath + "/qmlapplicationviewer.h",
            appViewerPath + "/qmlapplicationviewer.cpp"
        ]
    }

    FileTagger {
        pattern: "*.qml"
        fileTags: ["install"]
    }
}