summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/images/logo/logo.qbs
blob: 47472d9bd09f27565093aa0937689f88231c1f90 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import qbs.base 1.0

Product {
    condition: qbs.targetOS.contains("linux")
    name: "LogoImages"

    Group {
        name: "16x16"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/16x16/apps"
        files: ["16/QtProject-qtcreator.png"]
    }

    Group {
        name: "24x24"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/24x24/apps"
        files: ["24/QtProject-qtcreator.png"]
    }

    Group {
        name: "32x32"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/32x32/apps"
        files: ["32/QtProject-qtcreator.png"]
    }

    Group {
        name: "48x48"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/48x48/apps"
        files: ["48/QtProject-qtcreator.png"]
    }

    Group {
        name: "64x64"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/64x64/apps"
        files: ["64/QtProject-qtcreator.png"]
    }

    Group {
        name: "128x128"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/128x128/apps"
        files: ["128/QtProject-qtcreator.png"]
    }

    Group {
        name: "256x256"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/256x256/apps"
        files: ["256/QtProject-qtcreator.png"]
    }

    Group {
        name: "512x512"
        qbs.install: true
        qbs.installDir: "share/icons/hicolor/512x512/apps"
        files: ["512/QtProject-qtcreator.png"]
    }
}