From 86aec1ba2bb3275f4b2f562b42bdbae4e4ddeaf4 Mon Sep 17 00:00:00 2001 From: Jason Barron Date: Tue, 7 Jul 2009 17:03:13 +0200 Subject: 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. --- src/src.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12