forked from qt-creator/qt-creator
		
	Case sensitive systems do not recognise the library Change-Id: I59d296a3bc38669bb2dc58e0bafeafe792e41543 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			471 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			471 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# This file is part of Qt Creator
 | 
						|
# It enables debugging of Qt Quick applications
 | 
						|
 | 
						|
QT += declarative script
 | 
						|
INCLUDEPATH += $$PWD/include
 | 
						|
 | 
						|
symbian {
 | 
						|
    LIBNAME = QmlJSDebugger.lib
 | 
						|
} else {
 | 
						|
    windows:CONFIG(debug, debug|release) {
 | 
						|
        LIBNAME = QmlJSDebuggerd
 | 
						|
    } else {
 | 
						|
        LIBNAME = QmlJSDebugger
 | 
						|
    }
 | 
						|
}
 | 
						|
LIBS += -L$$PWD -l$$LIBNAME
 | 
						|
 | 
						|
symbian {
 | 
						|
    # Work around bug in gcce toolchain (QTCREATORBUG-5589)
 | 
						|
    LIBS += -lusrt2_2.lib
 | 
						|
}
 | 
						|
 | 
						|
DEFINES += QMLJSDEBUGGER
 |