summaryrefslogtreecommitdiffstats
path: root/examples/charts
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2016-02-03 13:07:17 +0200
committerMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2016-02-03 11:31:13 +0000
commit21c113d296ef0f0cfd849832e9f850b6baee249c (patch)
tree63b2797ee846e688db028902f3cc3cea76ade668 /examples/charts
parent18b5962194a7d4b32362957ed2fc3cb6f5c383ba (diff)
No longer automatically disable QDateTimeAxis on ARM platforms
QDateTimeAxis is now only disabled on platforms that define qreal as float. Change-Id: I08d393d328c972d74b27bd218e4cd01e844800c9 Reviewed-by: Tomi Korpipää <tomi.korpipaa@theqtcompany.com> Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
Diffstat (limited to 'examples/charts')
-rw-r--r--examples/charts/charts.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/charts/charts.pro b/examples/charts/charts.pro
index 3f463e46..5caa03c6 100644
--- a/examples/charts/charts.pro
+++ b/examples/charts/charts.pro
@@ -59,7 +59,7 @@ contains(QT_CONFIG, opengl) {
message("OpenGL not available. Some examples are disabled.")
}
-!linux-arm*: {
+!contains(QT_COORD_TYPE, float): {
SUBDIRS += \
datetimeaxis
}