aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs-setup-toolchains/qbs-setup-toolchains.qbs
blob: 3b4f2d737e808f75e2e6841adb18b03ab8b4727e (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
import qbs 1.0

QbsApp {
    name: "qbs-setup-toolchains"
    cpp.dynamicLibraries: qbs.targetOS.contains("windows") ? base.concat("shell32") : base
    files: [
        "clangclprobe.cpp",
        "clangclprobe.h",
        "commandlineparser.cpp",
        "commandlineparser.h",
        "cosmicprobe.cpp",
        "cosmicprobe.h",
        "gccprobe.cpp",
        "gccprobe.h",
        "iarewprobe.cpp",
        "iarewprobe.h",
        "keilprobe.cpp",
        "keilprobe.h",
        "main.cpp",
        "msvcprobe.cpp",
        "msvcprobe.h",
        "probe.cpp",
        "probe.h",
        "sdccprobe.cpp",
        "sdccprobe.h",
        "xcodeprobe.cpp",
        "xcodeprobe.h",
    ]
    Group {
        name: "MinGW specific files"
        condition: qbs.toolchain.contains("mingw")
        files: "qbs-setup-toolchains.rc"
        Group {
            name: "qbs-setup-toolchains manifest"
            files: "qbs-setup-toolchains.exe.manifest"
            fileTags: [] // the manifest is referenced by the rc file
        }
    }
}