forked from qt-creator/qt-creator
Change-Id: I563d9b61e0e281058dac46ed913b3102f70c4d90 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
15 lines
408 B
QML
15 lines
408 B
QML
import qbs
|
|
|
|
QtcTestApp {
|
|
name: "Memcheck " + testName + " autotest"
|
|
|
|
Depends { name: "qtc" }
|
|
|
|
property string testName
|
|
cpp.warningLevel: "none"
|
|
targetName: testName // Test runner hardcodes the names of the executables
|
|
destinationDirectory: project.buildDirectory + '/'
|
|
+ qtc.ide_bin_path + '/testapps/' + testName
|
|
files: sourceDirectory + "/main.cpp"
|
|
}
|