diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-07-10 15:22:21 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-07-10 15:22:21 (GMT) |
commit | a4878eda8852cfe2306b2c21bb64b399b8f3b3d8 (patch) | |
tree | c4a2e939882bd62e55a9ea1524fee34c000f7322 /src/plugins/plugins.pro | |
parent | 16cbcecb6a484618d8306fc774d86285a0f65958 (diff) | |
download | Qt-a4878eda8852cfe2306b2c21bb64b399b8f3b3d8.zip Qt-a4878eda8852cfe2306b2c21bb64b399b8f3b3d8.tar.gz Qt-a4878eda8852cfe2306b2c21bb64b399b8f3b3d8.tar.bz2 |
Fix plugins properly.
The 'else' block is not the correct place to add the s60 subdir because
this will also build the plugin for other non-unix platforms which is
not correct. It should be built on symbian.
Diffstat (limited to 'src/plugins/plugins.pro')
-rw-r--r-- | src/plugins/plugins.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro index a44acb5..76056a32 100644 --- a/src/plugins/plugins.pro +++ b/src/plugins/plugins.pro @@ -4,9 +4,10 @@ SUBDIRS *= accessible imageformats sqldrivers iconengines script unix:!symbian { contains(QT_CONFIG,iconv)|contains(QT_CONFIG,gnu-libiconv):SUBDIRS *= codecs } else { - SUBDIRS *= codecs s60 + SUBDIRS *= codecs } !embedded:SUBDIRS *= graphicssystems embedded:SUBDIRS *= gfxdrivers decorations mousedrivers kbddrivers !win32:!embedded:!mac:!symbian:SUBDIRS *= inputmethods +symbian:SUBDIRS += s60 contains(QT_CONFIG, phonon): SUBDIRS *= phonon |