blob: f3e2ad0529a484e5d88b6e7642f3be9ecacfcafe (
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_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",
"main.cpp",
"utils.cpp", "utils.h"
]
}
}
|