summaryrefslogtreecommitdiff
path: root/src/tools/qtcreatorcrashhandler/qtcreatorcrashhandler.qbs
blob: 2bd9b70d383c2df1480467960147038c06075d7e (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_crash_handler"
    condition: qbs.targetOS.contains("linux") && qbs.buildVariant == "debug"

    Depends { name: "Utils" }
    Depends { name: "Qt.widgets" }
    Depends { name: "app_version_header" }

    Group {
        name: "Crash Handler Sources"
        files: [
            "backtracecollector.cpp", "backtracecollector.h",
            "crashhandler.cpp", "crashhandler.h",
            "crashhandlerdialog.cpp", "crashhandlerdialog.h", "crashhandlerdialog.ui",
            "main.cpp",
            "utils.cpp", "utils.h"
        ]
    }
}