summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@qt.io>2017-07-24 12:47:58 +0200
committerMaurice Kalinowski <maurice.kalinowski@qt.io>2017-07-24 10:48:35 +0000
commit1aabd239af4c79a76d686fd598519cc2037fa8a2 (patch)
tree139aaa6a2f91dfefc5757e973f3b918baa1a87a0
parentb5c372ec0fb5e7e1fb606bb95c3447af2b555ac4 (diff)
Only build benchmarks in release mode
Fixes CI build as well. Change-Id: I8d36596e89bb266c2e5c51c14dc35025b6192ce0 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
-rw-r--r--tests/tests.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tests.pro b/tests/tests.pro
index 86fcc23..39b7216 100644
--- a/tests/tests.pro
+++ b/tests/tests.pro
@@ -1,2 +1,3 @@
TEMPLATE = subdirs
-SUBDIRS += auto benchmarks
+SUBDIRS += auto
+contains(QT_CONFIG, release): SUBDIRS += benchmarks