aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarker
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarker')
-rw-r--r--tests/benchmarker/benchmarker.qbs7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/benchmarker/benchmarker.qbs b/tests/benchmarker/benchmarker.qbs
index 200ab3189..72b535b42 100644
--- a/tests/benchmarker/benchmarker.qbs
+++ b/tests/benchmarker/benchmarker.qbs
@@ -2,11 +2,11 @@ import qbs
QtApplication {
name: "qbs_benchmarker"
- destinationDirectory: "bin"
type: "application"
consoleApplication: true
cpp.cxxLanguageVersion: "c++14"
condition: Qt.concurrent.present
+ Depends { name: "qbsbuildconfig" }
Depends {
name: "Qt.concurrent"
required: false
@@ -24,4 +24,9 @@ QtApplication {
"valgrindrunner.cpp",
"valgrindrunner.h",
]
+ Group {
+ fileTagsFilter: product.type
+ qbs.install: true
+ qbs.installDir: qbsbuildconfig.appInstallDir
+ }
}