aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/imageviewer/imageviewer.qbs
blob: de601bc8b0955624403f6c7871306c6c74e12769 (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
QtcPlugin {
    name: "ImageViewer"

    Depends { name: "Qt.svg"; required: false }
    Depends { name: "Qt.svgwidgets"; required: false }
    Depends { name: "Qt.widgets" }
    Depends { name: "Utils" }

    Depends { name: "Core" }

    Properties {
        condition: !Qt.svg.present || !Qt.svgwidgets.present
        cpp.defines: base.concat("QT_NO_SVG")
    }

    files: [
        "exportdialog.cpp",
        "exportdialog.h",
        "multiexportdialog.cpp",
        "multiexportdialog.h",
        "imageview.cpp",
        "imageview.h",
        "imageviewer.cpp",
        "imageviewer.h",
        "imageviewerconstants.h",
        "imageviewerfile.cpp",
        "imageviewerfile.h",
        "imageviewerplugin.cpp",
        "imageviewertr.h",
    ]
}