aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/valgrind/memcheck/testapps/testapp.qbs
blob: 31178978d6b11f6cf5ed83d32bdd35a061ddfa50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import qbs

QtcAutotest {
    type: ["application"] // Not to be executed directly by autotest-runner
    name: "Memcheck " + testName + " autotest"
    cpp.warningLevel: "none"
    property string testName
    targetName: testName // Test runner hardcodes the names of the executables
    destinationDirectory: project.buildDirectory + '/'
                          + qtc.ide_bin_path + '/testapps/' + testName
    files: "main.cpp"
}