aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/keiluv/keiluv.qbs
blob: 65bf6d65b96c0a733bcea56ab955fc5973edd5ee (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
import qbs
import "../../qbsplugin.qbs" as QbsPlugin

QbsPlugin {
    Depends { name: "qbsjson" }

    name: "keiluvgenerator"

    files: ["keiluvgeneratorplugin.cpp"]

    Group {
        name: "KEIL UV generator common"
        files: [
            "keiluvfilesgroupspropertygroup.cpp",
            "keiluvfilesgroupspropertygroup.h",
            "keiluvgenerator.cpp",
            "keiluvgenerator.h",
            "keiluvproject.cpp",
            "keiluvproject.h",
            "keiluvprojectwriter.cpp",
            "keiluvprojectwriter.h",
            "keiluvutils.cpp",
            "keiluvutils.h",
            "keiluvversioninfo.cpp",
            "keiluvversioninfo.h",
            "keiluvworkspace.cpp",
            "keiluvworkspace.h",
            "keiluvworkspacewriter.cpp",
            "keiluvworkspacewriter.h",
        ]
    }
    Group {
        name: "KEIL UV generator for MCS51"
        prefix: "archs/mcs51/"
        files: [
            "mcs51buildtargetgroup_v5.cpp",
            "mcs51buildtargetgroup_v5.h",
            "mcs51commonpropertygroup_v5.cpp",
            "mcs51commonpropertygroup_v5.h",
            "mcs51debugoptiongroup_v5.cpp",
            "mcs51debugoptiongroup_v5.h",
            "mcs51dlloptiongroup_v5.cpp",
            "mcs51dlloptiongroup_v5.h",
            "mcs51targetassemblergroup_v5.cpp",
            "mcs51targetassemblergroup_v5.h",
            "mcs51targetcommonoptionsgroup_v5.cpp",
            "mcs51targetcommonoptionsgroup_v5.h",
            "mcs51targetcompilergroup_v5.cpp",
            "mcs51targetcompilergroup_v5.h",
            "mcs51targetgroup_v5.cpp",
            "mcs51targetgroup_v5.h",
            "mcs51targetlinkergroup_v5.cpp",
            "mcs51targetlinkergroup_v5.h",
            "mcs51targetmiscgroup_v5.cpp",
            "mcs51targetmiscgroup_v5.h",
            "mcs51utilitiesgroup_v5.cpp",
            "mcs51utilitiesgroup_v5.h",
            "mcs51utils.cpp",
            "mcs51utils.h",
        ]
    }
    Group {
        name: "KEIL UV generator for ARM"
        prefix: "archs/arm/"
        files: [
            "armbuildtargetgroup_v5.cpp",
            "armbuildtargetgroup_v5.h",
            "armcommonpropertygroup_v5.cpp",
            "armcommonpropertygroup_v5.h",
            "armdebugoptiongroup_v5.cpp",
            "armdebugoptiongroup_v5.h",
            "armdlloptiongroup_v5.cpp",
            "armdlloptiongroup_v5.h",
            "armtargetassemblergroup_v5.cpp",
            "armtargetassemblergroup_v5.h",
            "armtargetcommonoptionsgroup_v5.cpp",
            "armtargetcommonoptionsgroup_v5.h",
            "armtargetcompilergroup_v5.cpp",
            "armtargetcompilergroup_v5.h",
            "armtargetgroup_v5.cpp",
            "armtargetgroup_v5.h",
            "armtargetlinkergroup_v5.cpp",
            "armtargetlinkergroup_v5.h",
            "armtargetmiscgroup_v5.cpp",
            "armtargetmiscgroup_v5.h",
            "armutilitiesgroup_v5.cpp",
            "armutilitiesgroup_v5.h",
        ]
    }
}