blob: fcbac27d856839f353d0e42a87d862e963656a11 (
plain)
1
2
3
4
5
6
7
8
9
|
import qbs
import "../../../autotest.qbs" as Autotest
Autotest {
name: "Memcheck " + testName + " autotest"
targetName: testName // Test runner hardcodes the names of the executables
destinationDirectory: buildDirectory + '/' + project.ide_bin_path + '/testapps/' + testName
files: "main.cpp"
}
|