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

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" ]
        }
    }
}