aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/imports/qbs/base
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@theqtcompany.com>2015-11-11 19:23:37 -0800
committerJake Petroules <jake.petroules@theqtcompany.com>2015-11-27 10:26:08 +0000
commita08c71b90d7dc88fd4175bb64797a43254cc14d7 (patch)
tree667f75eb37e5e6f21f5295809ec8ee4482c1641e /share/qbs/imports/qbs/base
parent8035c6a5babd0e41e54dc7bce06842978a34cbd9 (diff)
Move global auxiliary functions into a new Utilities extension.
Change-Id: If0f12b9d28b83080f4435d91b55d70d5cff5d42e Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'share/qbs/imports/qbs/base')
-rw-r--r--share/qbs/imports/qbs/base/AutotestRunner.qbs3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/qbs/imports/qbs/base/AutotestRunner.qbs b/share/qbs/imports/qbs/base/AutotestRunner.qbs
index b939b8b8b..67c5524a5 100644
--- a/share/qbs/imports/qbs/base/AutotestRunner.qbs
+++ b/share/qbs/imports/qbs/base/AutotestRunner.qbs
@@ -30,6 +30,7 @@
import qbs
import qbs.ModUtils
+import qbs.Utilities
Product {
name: "autotest-runner"
@@ -46,7 +47,7 @@ Product {
Rule {
inputsFromDependencies: "application"
Artifact {
- filePath: qbs.getHash(input.filePath) + ".result.dummy" // Will never exist.
+ filePath: Utilities.getHash(input.filePath) + ".result.dummy" // Will never exist.
fileTags: "autotest-result"
alwaysUpdated: false
}