diff options
author | axis <qt-info@nokia.com> | 2010-06-04 08:41:47 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-06-04 10:02:41 (GMT) |
commit | bc11da163dc53860cf728b76dbb472bb2c9dadbf (patch) | |
tree | 7fa9aca3fd59e5938e75d7f3d2b39c51af5ad92c /src/plugins/s60 | |
parent | 095e74825d588fc260f06fba3a1c32ac837cf73d (diff) | |
download | Qt-bc11da163dc53860cf728b76dbb472bb2c9dadbf.zip Qt-bc11da163dc53860cf728b76dbb472bb2c9dadbf.tar.gz Qt-bc11da163dc53860cf728b76dbb472bb2c9dadbf.tar.bz2 |
Fixed def file usage for the makefile build system on the SDK plugin.
RevBy: Thomas Zander
Diffstat (limited to 'src/plugins/s60')
-rw-r--r-- | src/plugins/s60/s60pluginbase.pri | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/plugins/s60/s60pluginbase.pri b/src/plugins/s60/s60pluginbase.pri index 1a6f4a2..4e15102 100644 --- a/src/plugins/s60/s60pluginbase.pri +++ b/src/plugins/s60/s60pluginbase.pri @@ -8,11 +8,16 @@ QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/s60 MMP_RULES += NOEXPORTLIBRARY -defBlock = \ - "$${LITERAL_HASH}ifdef WINSCW" \ - "DEFFILE ../bwins/qts60plugin.def" \ - "$${LITERAL_HASH}else" \ - "DEFFILE ../eabi/qts60plugin.def" \ - "$${LITERAL_HASH}endif" +symbian-abld|symbian-sbsv2 { + defBlock = \ + "$${LITERAL_HASH}ifdef WINSCW" \ + "DEFFILE ../bwins/qts60plugin.def" \ + "$${LITERAL_HASH}else" \ + "DEFFILE ../eabi/qts60plugin.def" \ + "$${LITERAL_HASH}endif" +} else { + CONFIG *= def_files + DEF_FILE = ../eabi/qts60pluginu.def +} MMP_RULES += defBlock
\ No newline at end of file |