forked from qt-creator/qt-creator
The respective items are available without it. Change-Id: Idc840cf08e7bec84f561c096afe8de25b1fb8468 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
33 lines
876 B
QML
33 lines
876 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "Debugger dumpers autotest"
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Qt.network" } // For QHostAddress
|
|
Depends { name: "Qt.widgets" }
|
|
Group {
|
|
name: "Sources from Debugger plugin"
|
|
prefix: project.debuggerDir
|
|
files: [
|
|
"debuggerprotocol.h", "debuggerprotocol.cpp",
|
|
"simplifytype.h", "simplifytype.cpp",
|
|
"watchdata.h", "watchdata.cpp",
|
|
"watchutils.h", "watchutils.cpp"
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
files: [
|
|
"tst_dumpers.cpp"
|
|
]
|
|
}
|
|
|
|
cpp.defines: base.concat([
|
|
'CDBEXT_PATH="' + project.buildDirectory + '\\\\lib"',
|
|
'DUMPERDIR="' + path + '/../../../share/qtcreator/debugger"',
|
|
'QT_NO_CAST_FROM_ASCII',
|
|
])
|
|
cpp.includePaths: base.concat([project.debuggerDir])
|
|
}
|