summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-06-24 11:19:16 -0700
committerThiago Macieira <thiago.macieira@intel.com>2014-06-27 08:28:07 +0200
commit7638c0d78310e1e6b979b1f734f2324afd598ddb (patch)
treebc25b4eca3f40b6fa7903495be64cc0c2f0dd513 /mkspecs
parent032f0f543e1f0bcbec7ad2881f15af0ce50058c2 (diff)
Work around Intel Compiler 14 & 15 bug with paths starting with dot
It somehow forgets the dot and thus can't open any moc or uic includes. Intel bug: DPD200357915 Change-Id: I610ba4d3df0072bfb83f90347d94f4586d0d8c86 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_build_config.prf6
1 files changed, 6 insertions, 0 deletions
diff --git a/mkspecs/features/qt_build_config.prf b/mkspecs/features/qt_build_config.prf
index 5fece28ca3..42046c238a 100644
--- a/mkspecs/features/qt_build_config.prf
+++ b/mkspecs/features/qt_build_config.prf
@@ -25,6 +25,12 @@ OBJECTS_DIR = .obj
MOC_DIR = .moc
RCC_DIR = .rcc
UI_DIR = .uic
+intel_icl {
+ # ICL 14.0 has a bug that makes it not find #includes in dirs starting with .
+ MOC_DIR = tmp/moc
+ RCC_DIR = tmp/rcc
+ UI_DIR = tmp/uic
+}
QMAKE_DIR_REPLACE_SANE = PRECOMPILED_DIR OBJECTS_DIR MOC_DIR RCC_DIR UI_DIR