aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/qtcreatorcrashhandler/qtcreatorcrashhandler.qbs
blob: 6b75aa13458e3bf7c14bbdd6c55bcc036a706bd3 (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 1.0

QtcTool {
    name: "qtcreator_crash_handler"
    condition: qbs.targetOS.contains("linux") && qbs.buildVariant == "debug"
    installDir: qtc.ide_bin_path

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