aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/iarew/iarew.qbs
blob: 7b2270426186a458ca25beec09430a219527eaee (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import qbs
import "../../qbsplugin.qbs" as QbsPlugin

QbsPlugin {
    Depends { name: "qbsjson" }

    name: "iarewgenerator"

    files: ["iarewgeneratorplugin.cpp"]

    Group {
        name: "IAR EW generator common"
        files: [
            "iarewfileversionproperty.cpp",
            "iarewfileversionproperty.h",
            "iarewgenerator.cpp",
            "iarewgenerator.h",
            "iarewoptionpropertygroup.cpp",
            "iarewoptionpropertygroup.h",
            "iarewproject.cpp",
            "iarewproject.h",
            "iarewprojectwriter.cpp",
            "iarewprojectwriter.h",
            "iarewsettingspropertygroup.cpp",
            "iarewsettingspropertygroup.h",
            "iarewsourcefilepropertygroup.cpp",
            "iarewsourcefilepropertygroup.h",
            "iarewsourcefilespropertygroup.cpp",
            "iarewsourcefilespropertygroup.h",
            "iarewtoolchainpropertygroup.cpp",
            "iarewtoolchainpropertygroup.h",
            "iarewutils.cpp",
            "iarewutils.h",
            "iarewversioninfo.cpp",
            "iarewversioninfo.h",
            "iarewworkspace.cpp",
            "iarewworkspace.h",
            "iarewworkspacewriter.cpp",
            "iarewworkspacewriter.h",
        ]
    }
    Group {
        name: "IAR EW generator for ARM"
        prefix: "archs/arm/"
        files: [
            "armarchiversettingsgroup_v8.cpp",
            "armarchiversettingsgroup_v8.h",
            "armassemblersettingsgroup_v8.cpp",
            "armassemblersettingsgroup_v8.h",
            "armbuildconfigurationgroup_v8.cpp",
            "armbuildconfigurationgroup_v8.h",
            "armcompilersettingsgroup_v8.cpp",
            "armcompilersettingsgroup_v8.h",
            "armgeneralsettingsgroup_v8.cpp",
            "armgeneralsettingsgroup_v8.h",
            "armlinkersettingsgroup_v8.cpp",
            "armlinkersettingsgroup_v8.h",
        ]
    }
    Group {
        name: "IAR EW generator for AVR"
        prefix: "archs/avr/"
        files: [
            "avrarchiversettingsgroup_v7.cpp",
            "avrarchiversettingsgroup_v7.h",
            "avrassemblersettingsgroup_v7.cpp",
            "avrassemblersettingsgroup_v7.h",
            "avrbuildconfigurationgroup_v7.cpp",
            "avrbuildconfigurationgroup_v7.h",
            "avrcompilersettingsgroup_v7.cpp",
            "avrcompilersettingsgroup_v7.h",
            "avrgeneralsettingsgroup_v7.cpp",
            "avrgeneralsettingsgroup_v7.h",
            "avrlinkersettingsgroup_v7.cpp",
            "avrlinkersettingsgroup_v7.h",
        ]
    }
    Group {
        name: "IAR EW generator for MCS51"
        prefix: "archs/mcs51/"
        files: [
            "mcs51archiversettingsgroup_v10.cpp",
            "mcs51archiversettingsgroup_v10.h",
            "mcs51assemblersettingsgroup_v10.cpp",
            "mcs51assemblersettingsgroup_v10.h",
            "mcs51buildconfigurationgroup_v10.cpp",
            "mcs51buildconfigurationgroup_v10.h",
            "mcs51compilersettingsgroup_v10.cpp",
            "mcs51compilersettingsgroup_v10.h",
            "mcs51generalsettingsgroup_v10.cpp",
            "mcs51generalsettingsgroup_v10.h",
            "mcs51linkersettingsgroup_v10.cpp",
            "mcs51linkersettingsgroup_v10.h",
        ]
    }
    Group {
        name: "IAR EW generator for STM8"
        prefix: "archs/stm8/"
        files: [
            "stm8archiversettingsgroup_v3.cpp",
            "stm8archiversettingsgroup_v3.h",
            "stm8assemblersettingsgroup_v3.cpp",
            "stm8assemblersettingsgroup_v3.h",
            "stm8buildconfigurationgroup_v3.cpp",
            "stm8buildconfigurationgroup_v3.h",
            "stm8compilersettingsgroup_v3.cpp",
            "stm8compilersettingsgroup_v3.h",
            "stm8generalsettingsgroup_v3.cpp",
            "stm8generalsettingsgroup_v3.h",
            "stm8linkersettingsgroup_v3.cpp",
            "stm8linkersettingsgroup_v3.h",
        ]
    }
    Group {
        name: "IAR EW generator for MSP430"
        prefix: "archs/msp430/"
        files: [
            "msp430archiversettingsgroup_v7.cpp",
            "msp430archiversettingsgroup_v7.h",
            "msp430assemblersettingsgroup_v7.cpp",
            "msp430assemblersettingsgroup_v7.h",
            "msp430buildconfigurationgroup_v7.cpp",
            "msp430buildconfigurationgroup_v7.h",
            "msp430compilersettingsgroup_v7.cpp",
            "msp430compilersettingsgroup_v7.h",
            "msp430generalsettingsgroup_v7.cpp",
            "msp430generalsettingsgroup_v7.h",
            "msp430linkersettingsgroup_v7.cpp",
            "msp430linkersettingsgroup_v7.h",
        ]
    }
}