check for QtCore.dso in folder to determin if armv5 should be supported (rather than .lib)
authortimkelly
Tue, 14 Sep 2010 15:23:21 -0500
changeset 2005 6922af2e1b8a
parent 1999 8fef5b8ecdd8
child 2006 14c0473916ef
check for QtCore.dso in folder to determin if armv5 should be supported (rather than .lib)
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	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$
 		}
 	}