2013-08-26 17:50:02 +02:00
|
|
|
import qbs
|
|
|
|
|
|
2014-04-29 13:42:37 +02:00
|
|
|
QtcAutotest {
|
2013-08-26 17:50:02 +02:00
|
|
|
name: "Debugger dumpers autotest"
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
Depends { name: "Qt.network" } // For QHostAddress
|
2014-01-11 08:47:55 +01:00
|
|
|
Depends { name: "Qt.widgets" }
|
2013-08-26 17:50:02 +02:00
|
|
|
Group {
|
|
|
|
|
name: "Sources from Debugger plugin"
|
|
|
|
|
prefix: project.debuggerDir
|
|
|
|
|
files: [
|
|
|
|
|
"debuggerprotocol.h", "debuggerprotocol.cpp",
|
2014-01-15 17:32:47 +01:00
|
|
|
"simplifytype.h", "simplifytype.cpp",
|
2013-08-26 17:50:02 +02:00
|
|
|
"watchdata.h", "watchdata.cpp",
|
|
|
|
|
"watchutils.h", "watchutils.cpp"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Group {
|
|
|
|
|
name: "Test sources"
|
|
|
|
|
files: [
|
|
|
|
|
"tst_dumpers.cpp"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cpp.defines: base.concat([
|
2014-07-16 13:34:55 +02:00
|
|
|
'CDBEXT_PATH="' + project.buildDirectory + '\\\\lib"',
|
2013-09-25 18:22:01 +02:00
|
|
|
'DUMPERDIR="' + path + '/../../../share/qtcreator/debugger"',
|
2013-08-26 17:50:02 +02:00
|
|
|
])
|
|
|
|
|
cpp.includePaths: base.concat([project.debuggerDir])
|
|
|
|
|
}
|