aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/autotest.qbs
blob: 8c802df98b175be6755546ab59f7c5b055c77461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import qbs

QtApplication {
    type: "application"
    property string testName
    name: "tst_" + testName
    Depends { name: "Qt.test" }
    Depends { name: "qbscore" }
    cpp.includePaths: path + "/../../src"
    destinationDirectory: "bin"
    Group {
        name: "logging"
        prefix: path + "/../../src/app/shared/logging/"
        files: [
            "coloredoutput.cpp",
            "coloredoutput.h",
            "consolelogger.cpp",
            "consolelogger.h"
        ]
    }
}