aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/imageviewer/imageviewer.qbs
blob: 7d7ad717617fb8cca06394d8fe6de0c72fbd73bf (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
33
34
35
36
37
38
39
40
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "ImageViewer"

    Depends { name: "qt"; submodules: ['gui', 'svg'] }
    Depends { name: "Core" }

    Depends { name: "cpp" }
    cpp.includePaths: [
        "..",
        "../../libs",
        buildDirectory
    ]

    files: [
        "imageviewerplugin.h",
        "imageviewerfactory.h",
        "imageviewerfile.h",
        "imageviewer.h",
        "imageview.h",
        "imageviewerconstants.h",
        "imagevieweractionhandler.h",
        "imageviewerplugin.cpp",
        "imageviewerfactory.cpp",
        "imageviewerfile.cpp",
        "imageviewer.cpp",
        "imageview.cpp",
        "imagevieweractionhandler.cpp",
        "imageviewertoolbar.ui",
        "imageviewer.qrc",
        "ImageViewer.mimetypes.xml"
    ]
}