aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/process_stub.qbs
blob: 341fb57791bd1afee666c220858c63f7d139099d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import qbs 1.0

QtcTool {
    name: "qtcreator_process_stub"
    consoleApplication: true


    files: {
        if (qbs.targetOS.contains("windows")) {
            return [ "process_stub_win.c" ]
        } else {
            return [ "process_stub_unix.c" ]
        }
    }

    cpp.dynamicLibraries: {
        if (qbs.targetOS.contains("windows")) {
            return [ "shell32" ]
        }
    }
}