blob: a3ad96f7e8d3cb3ddb96d337dd3f121c4eecdd1b (
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++14"
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",
]
}
|