check for QtCore.dso in folder to determin if armv5 should be supported (rather than .lib)
--- a/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java Tue Sep 14 10:19:24 2010 -0500
+++ b/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java Tue Sep 14 15:23:21 2010 -0500
@@ -33,7 +33,7 @@
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 releaseRoot.append("armv5/lib/QtCore.lib").toFile(); //$NON-NLS-1$
+ return releaseRoot.append("armv5/lib/QtCore.dso").toFile(); //$NON-NLS-1$
}
}