From 21c113d296ef0f0cfd849832e9f850b6baee249c Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Wed, 3 Feb 2016 13:07:17 +0200 Subject: No longer automatically disable QDateTimeAxis on ARM platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit QDateTimeAxis is now only disabled on platforms that define qreal as float. Change-Id: I08d393d328c972d74b27bd218e4cd01e844800c9 Reviewed-by: Tomi Korpipää Reviewed-by: Mika Salmela Reviewed-by: Miikka Heikkinen --- examples/charts/charts.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/charts') 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 } -- cgit v1.2.3