aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/valgrind/memcheck/testapps/testapp.qbs
blob: 321b6125d65894b88ba7c09046797c7ddd6f086c (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 + '/'
                          + project.ide_bin_path + '/testapps/' + testName
    files: "main.cpp"
}