aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarker/benchmarker.qbs
blob: 3a2654ff3c80ec3ab2f5dc89d68be869844ddac4 (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
30
31
32
import qbs

QtApplication {
    name: "qbs_benchmarker"
    type: "application"
    consoleApplication: true
    cpp.cxxLanguageVersion: "c++17"
    condition: Qt.concurrent.present
    Depends { name: "qbsbuildconfig" }
    Depends {
        name: "Qt.concurrent"
        required: false
    }
    files: [
        "activities.h",
        "benchmarker-main.cpp",
        "benchmarker.cpp",
        "benchmarker.h",
        "commandlineparser.cpp",
        "commandlineparser.h",
        "exception.h",
        "runsupport.cpp",
        "runsupport.h",
        "valgrindrunner.cpp",
        "valgrindrunner.h",
    ]
    Group {
        fileTagsFilter: product.type
        qbs.install: true
        qbs.installDir: qbsbuildconfig.appInstallDir
    }
}