From 9dcd2a7c347e34f8cf2927d8603aa75f04251070 2014-06-06 09:39:22 From: Tomi Korpipää Date: 2014-06-06 09:39:22 Subject: [PATCH] iOS compilation fix Change-Id: Iabdd394d268e7ea4b5ad51a67f11f40576d09f9f Reviewed-by: Titta Heikkala --- diff --git a/src/chartconfig_p.h b/src/chartconfig_p.h index c2f9b1f..6007333 100644 --- a/src/chartconfig_p.h +++ b/src/chartconfig_p.h @@ -40,7 +40,7 @@ #endif #ifndef DEVELOPMENT_BUILD -#ifdef Q_OS_ANDROID +#if defined (Q_OS_ANDROID) || defined (Q_OS_IOS) // Android builds do not have __DATE__ const char *buildTime = __TIME__; #else