summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/cxx11.qbs
blob: d62a6f49fb134a2bcf8df1a5518e243bae6da65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import qbs
import "../cplusplusautotest.qbs" as CPlusPlusAutotest

CPlusPlusAutotest {
    name: "Cxx11 autotest"
    Group {
        name: "Source Files"
        files: "tst_cxx11.cpp"
    }

    Group {
        name: "Data Files"
        prefix: "data/"
        fileTags: ["data"]
        files: [
            "inlineNamespace.1.cpp",
            "inlineNamespace.1.errors.txt",
            "staticAssert.1.cpp",
            "staticAssert.1.errors.txt",
            "noExcept.1.cpp",
            "noExcept.1.errors.txt"
        ]
    }

    cpp.defines: base.concat(['SRCDIR="' + path + '"'])
}