# HG changeset patch # User timkelly # Date 1264106338 21600 # Node ID aedbee09433665fad650cb10dd940a279f67910b # Parent 43d328ced5343d9943b105f73b16030e59c0c051 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. diff -r 43d328ced534 -r aedbee094336 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$