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

QtApplication {
    name: "qbs_benchmarker"
    destinationDirectory: "bin"
    type: "application"
    consoleApplication: true
    cpp.cxxLanguageVersion: "c++11"
    Depends { name: "Qt.concurrent" }
    files: [
        "activities.h",
        "benchmarker-main.cpp",
        "benchmarker.cpp",
        "benchmarker.h",
        "commandlineparser.cpp",
        "commandlineparser.h",
        "exception.h",
        "runsupport.cpp",
        "runsupport.h",
        "valgrindrunner.cpp",
        "valgrindrunner.h",
    ]
}