aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarker
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2018-07-12 13:29:45 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2018-07-12 18:16:25 +0000
commit72d56f1e95b87cf6983e0b348d7c05528d095f18 (patch)
treee180bbbcd65d654fc323412dc423fd93077fa3ca /tests/benchmarker
parentb689a16ae3adff29f8d8fcf4de305f9b1a67636f (diff)
Remove support for in-build-dir-execution of the qbs qbs build
This is not supported. People must use the content of the installation directory instead. This reduces complexity of qbs' own project files. Change-Id: I39f8bb4d5252b0631a64b3aac01f83b09b28ae0f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
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
+ }
}