diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-07-07 15:03:13 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-07-07 15:03:13 (GMT) |
commit | 86aec1ba2bb3275f4b2f562b42bdbae4e4ddeaf4 (patch) | |
tree | 91845e1664ebb92245efa93540993b72722c5e94 | |
parent | 3aef8eaffb8959a1559b0b3b01a423a2ac42c8eb (diff) | |
download | Qt-86aec1ba2bb3275f4b2f562b42bdbae4e4ddeaf4.zip Qt-86aec1ba2bb3275f4b2f562b42bdbae4e4ddeaf4.tar.gz Qt-86aec1ba2bb3275f4b2f562b42bdbae4e4ddeaf4.tar.bz2 |
Fix compilation on WinCE by using correct scopes.
A scope is not an else case unless it is explicitly preceded by the
'else' keyword. This was causing the 'symbian' block to be treated as
a separate block and therefore WinCE was hitting the 'else' case which
caused several subdirs to be added a second time.
-rw-r--r-- | src/src.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro index f131e4f..f9628bd 100644 --- a/src/src.pro +++ b/src/src.pro @@ -5,7 +5,7 @@ unset(SRC_SUBDIRS) win32:SRC_SUBDIRS += src_winmain wince*:{ SRC_SUBDIRS += src_corelib src_xml src_gui src_sql src_network src_script src_testlib -} symbian { +} else:symbian { SRC_SUBDIRS += src_s60main src_corelib src_xml src_gui src_network src_sql src_script src_testlib contains(QT_CONFIG, svg): SRC_SUBDIRS += src_svg SRC_SUBDIRS += src_plugins |