Files
qt-creator/tests/auto/debugger/dumpers.qbs
hjk fb9cc36e9f Debugger: Remove QT_NO_CAST_FROM_ASCII from tests
The intent is covert by the global QT_RESTRICTED_CAST_FROM_ASCII
nowadays.

Change-Id: Icf1bcb6e88042376382e32f31a0ebe2afb5f203d
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
2016-03-21 07:25:39 +00:00

32 lines
843 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"',
])
cpp.includePaths: base.concat([project.debuggerDir])
}