Downgrade to Qt4 since Qt5 5.2.0 on Ubuntu 14.04 has a bug with harbuzz and japanese characters.
		
			
				
	
	
		
			33 lines
		
	
	
		
			794 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			794 B
		
	
	
	
		
			INI
		
	
	
	
	
	
#-------------------------------------------------
 | 
						|
#
 | 
						|
# Project created by QtCreator 2013-07-23T15:34:17
 | 
						|
#
 | 
						|
#-------------------------------------------------
 | 
						|
 | 
						|
TEMPLATE = subdirs
 | 
						|
 | 
						|
android {
 | 
						|
    SUBDIRS = qcma_android.pro
 | 
						|
} else {
 | 
						|
    SUBDIRS = qcma_gui.pro
 | 
						|
}
 | 
						|
 | 
						|
# Compile the headless binary only on Linux because it depends on dbus
 | 
						|
unix:!macx:!android {
 | 
						|
    SUBDIRS += qcma_cli.pro
 | 
						|
    # The appindicator and kde extensions are linux only too
 | 
						|
    ENABLE_APPINDICATOR {
 | 
						|
        SUBDIRS += qcma_appindicator.pro
 | 
						|
    }
 | 
						|
    ENABLE_KDENOTIFIER {
 | 
						|
        greaterThan(QT_MAJOR_VERSION, 4) {
 | 
						|
            error("ENABLE_KDE can only be used with Qt4")
 | 
						|
        }
 | 
						|
        SUBDIRS += qcma_kdenotifier.pro
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
TRANSLATIONS += \
 | 
						|
    resources/translations/qcma_es.ts \
 | 
						|
    resources/translations/qcma_ja.ts
 |