diff options
author | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2014-12-18 11:23:03 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2014-12-19 15:10:36 +0100 |
commit | 1199a93fc0afe7e8fcf2281dc5deb62ffdfc0124 (patch) | |
tree | 2c31bff17e8415d969124908131f2b01d6a09299 /qbs | |
parent | d5a19a6005a66485a729658331f4a2d41a93758d (diff) | |
download | qt-creator-1199a93fc0afe7e8fcf2281dc5deb62ffdfc0124.tar.gz |
qbs build: Make use of AutotestRunner.
And fix some autotest project file problems uncovered by this.
Change-Id: Id2f46aeab31ccfbcffe43bd23af8115c69f57849
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'qbs')
-rw-r--r-- | qbs/imports/QtcAutotest.qbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs/imports/QtcAutotest.qbs b/qbs/imports/QtcAutotest.qbs index f24e11c7c5..103aa3b3f0 100644 --- a/qbs/imports/QtcAutotest.qbs +++ b/qbs/imports/QtcAutotest.qbs @@ -2,7 +2,7 @@ import qbs import qbs.FileInfo QtcProduct { - type: "application" + type: ["application", "autotest"] Depends { name: "Qt.test" } Depends { name: "copyable_resource" } targetName: "tst_" + name.split(' ').join("") |