aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/profilewriter/profilewriter.qbs
blob: 6263fade363f648a9539f4be07535c7b0e126c34 (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
27
28
29
import qbs
import "../autotest.qbs" as Autotest

Autotest {
    name: "ProFileWriter autotest"
    Depends { name: "Qt.xml" }
    Group {
        name: "Sources from ProParser"
        id: proParserGroup
        prefix: project.ide_source_tree + "/src/shared/proparser/"
        files: [
            "ioutils.h", "ioutils.cpp",
            "profileevaluator.h", "profileevaluator.cpp",
            "proitems.h", "proitems.cpp",
            "prowriter.h", "prowriter.cpp",
            "qmake_global.h",
            "qmakebuiltins.cpp",
            "qmakeevaluator.h", "qmakeevaluator_p.h", "qmakeevaluator.cpp",
            "qmakeglobals.h", "qmakeglobals.cpp",
            "qmakeparser.h", "qmakeparser.cpp",
            "qmakevfs.h", "qmakevfs.cpp"
        ]
    }
    Group {
        name: "Test sources"
        files: "tst_profilewriter.cpp"
    }
    cpp.includePaths: base.concat([proParserGroup.prefix])
}