Scan for QtCore.dll rather than QtCore.lib for WINSCW (WINSCW UREL won't have .lib). This is needed so someone can build a debug configuration and have it output to the UREL folder for debugging emulator on UREL.
authortimkelly
Thu, 21 Jan 2010 14:38:58 -0600
changeset 792 aedbee094336
parent 791 43d328ced534
child 800 7395fd14bbe1
Scan for QtCore.dll rather than QtCore.lib for WINSCW (WINSCW UREL won't have .lib). This is needed so someone can build a debug configuration and have it output to the UREL folder for debugging emulator on UREL.
qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java
--- a/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java	Wed Jan 20 08:28:47 2010 -0600
+++ b/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java	Thu Jan 21 14:38:58 2010 -0600
@@ -28,7 +28,7 @@
 
 		if (context.getPlatformString().equals(ISymbianBuildContext.EMULATOR_PLATFORM)) {
 			return context.getSDK().getReleaseRoot().append(context.getPlatformString()).
-			append(context.getTargetString()).append("QtCore.lib").toFile(); //$NON-NLS-1$
+			append(context.getTargetString()).append("QtCore.dll").toFile(); //$NON-NLS-1$
 		} else {
 			// for non-emulator targets, check in the armv5/lib directory (ARMV5 and GCCE)
 			return context.getSDK().getReleaseRoot().append("armv5/lib/QtCore.lib").toFile(); //$NON-NLS-1$