qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java
changeset 792 aedbee094336
parent 649 7b3eeed5fa6a
child 1434 79471fd1fd69
equal deleted inserted replaced
791:43d328ced534 792:aedbee094336
    26 
    26 
    27 	protected File getLibFile(ISymbianBuildContext context) {
    27 	protected File getLibFile(ISymbianBuildContext context) {
    28 
    28 
    29 		if (context.getPlatformString().equals(ISymbianBuildContext.EMULATOR_PLATFORM)) {
    29 		if (context.getPlatformString().equals(ISymbianBuildContext.EMULATOR_PLATFORM)) {
    30 			return context.getSDK().getReleaseRoot().append(context.getPlatformString()).
    30 			return context.getSDK().getReleaseRoot().append(context.getPlatformString()).
    31 			append(context.getTargetString()).append("QtCore.lib").toFile(); //$NON-NLS-1$
    31 			append(context.getTargetString()).append("QtCore.dll").toFile(); //$NON-NLS-1$
    32 		} else {
    32 		} else {
    33 			// for non-emulator targets, check in the armv5/lib directory (ARMV5 and GCCE)
    33 			// for non-emulator targets, check in the armv5/lib directory (ARMV5 and GCCE)
    34 			return context.getSDK().getReleaseRoot().append("armv5/lib/QtCore.lib").toFile(); //$NON-NLS-1$
    34 			return context.getSDK().getReleaseRoot().append("armv5/lib/QtCore.lib").toFile(); //$NON-NLS-1$
    35 		}
    35 		}
    36 	}
    36 	}