diff options
author | Iain <qt-info@nokia.com> | 2009-10-09 18:21:15 (GMT) |
---|---|---|
committer | Iain <qt-info@nokia.com> | 2009-10-13 13:13:53 (GMT) |
commit | 8e0fbc2caa3edefb78d6667721235b783bc1a850 (patch) | |
tree | bdf89a31ce49f444bf06f6353593d3a450448811 /src/3rdparty | |
parent | be3d1e0a4fc2c39ba87f4f065942bd3418fb351e (diff) | |
download | Qt-8e0fbc2caa3edefb78d6667721235b783bc1a850.zip Qt-8e0fbc2caa3edefb78d6667721235b783bc1a850.tar.gz Qt-8e0fbc2caa3edefb78d6667721235b783bc1a850.tar.bz2 |
Temporary workaround to get WebKit to pick up DEF file from std location
Tweak WebCore .pro file to get its DEF file from the same location as
all the other DEF files come from
Reviewed-by: TrustMe
Diffstat (limited to 'src/3rdparty')
-rw-r--r-- | src/3rdparty/webkit/WebCore/WebCore.pro | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 1c39bb8..a0a072d 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -87,6 +87,19 @@ win32-g++ { QMAKE_LIBDIR_POST += $$split(TMPPATH,";") } +# Temporary workaround to pick up the DEF file from the same place as all the others +symbian { + shared { + MMP_RULES -= defBlock + + MMP_RULES += "$${LITERAL_HASH}ifdef WINSCW" \ + "DEFFILE ../../../s60installs/bwins/$${TARGET}.def" \ + "$${LITERAL_HASH}elif defined EABI" \ + "DEFFILE ../../../s60installs/eabi/$${TARGET}.def" \ + "$${LITERAL_HASH}endif" + } +} + # Assume that symbian OS always comes with sqlite symbian:!CONFIG(QTDIR_build): CONFIG += system-sqlite |