123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- # Add more folders to ship with the application, here
- folder_01.source = qml/TheKarmaWay
- folder_01.target = qml
- DEPLOYMENTFOLDERS = folder_01
- # Additional import path used to resolve QML modules in Creator's code model
- QML_IMPORT_PATH =
- symbian:TARGET.UID3 = 0xE47D459E
- # Smart Installer package's UID
- # This UID is from the protected range and therefore the package will
- # fail to install if self-signed. By default qmake uses the unprotected
- # range value if unprotected UID is defined for the application and
- # 0x2002CCCF value if protected UID is given to the application
- #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
- # Allow network access on Symbian
- symbian:TARGET.CAPABILITY += NetworkServices
- # If your application uses the Qt Mobility libraries, uncomment the following
- # lines and add the respective components to the MOBILITY variable.
- # CONFIG += mobility
- # MOBILITY +=
- # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
- CONFIG += qdeclarative-boostable
- CONFIG += mobility
- # Add dependency to Symbian components
- # CONFIG += qt-components
- # The .cpp file which was generated for your project. Feel free to hack it.
- SOURCES += main.cpp
- # Please do not modify the following two lines. Required for deployment.
- include(qmlapplicationviewer/qmlapplicationviewer.pri)
- qtcAddDeployment()
- OTHER_FILES += \
- qtc_packaging/debian_harmattan/rules \
- qtc_packaging/debian_harmattan/README \
- qtc_packaging/debian_harmattan/manifest.aegis \
- qtc_packaging/debian_harmattan/copyright \
- qtc_packaging/debian_harmattan/control \
- qtc_packaging/debian_harmattan/compat \
- qtc_packaging/debian_harmattan/changelog \
- android/AndroidManifest.xml \
- android/res/drawable/icon.png \
- android/res/drawable/logo.png \
- android/res/drawable-hdpi/icon.png \
- android/res/drawable-ldpi/icon.png \
- android/res/drawable-mdpi/icon.png \
- android/res/layout/splash.xml \
- android/res/values/libs.xml \
- android/res/values/strings.xml \
- android/res/values-de/strings.xml \
- android/res/values-el/strings.xml \
- android/res/values-es/strings.xml \
- android/res/values-et/strings.xml \
- android/res/values-fa/strings.xml \
- android/res/values-fr/strings.xml \
- android/res/values-id/strings.xml \
- android/res/values-it/strings.xml \
- android/res/values-ja/strings.xml \
- android/res/values-ms/strings.xml \
- android/res/values-nb/strings.xml \
- android/res/values-nl/strings.xml \
- android/res/values-pl/strings.xml \
- android/res/values-pt-rBR/strings.xml \
- android/res/values-ro/strings.xml \
- android/res/values-rs/strings.xml \
- android/res/values-ru/strings.xml \
- android/res/values-zh-rCN/strings.xml \
- android/res/values-zh-rTW/strings.xml \
- android/src/org/kde/necessitas/ministro/IMinistro.aidl \
- android/src/org/kde/necessitas/ministro/IMinistroCallback.aidl \
- android/src/org/kde/necessitas/origo/QtActivity.java \
- android/src/org/kde/necessitas/origo/QtApplication.java \
- android/version.xml
- RESOURCES += \
- resources.qrc
- evil_hack_to_fool_lupdate {
- SOURCES += \
- qml/thekarmaway/main.qml \
- qml/thekarmaway/parts/BarChart.qml\
- qml/thekarmaway/parts/Person.qml\
- qml/thekarmaway/parts/TitleBar.qml\
- qml/thekarmaway/pages/AboutPage.qml\
- qml/thekarmaway/pages/AboutPage.qml\
- qml/thekarmaway/pages/AddKarmaForm.qml\
- qml/thekarmaway/pages/HelpPage.qml\
- qml/thekarmaway/pages/ImageSelectionDialog.qml\
- qml/thekarmaway/pages/KarmaListPage.qml\
- qml/thekarmaway/pages/PersonPage.qml\
- qml/thekarmaway/pages/SettingsForm.qml
- }
- TRANSLATIONS += i18n/thekarmaway_es_ES.ts
- !isEmpty(TRANSLATIONS) {
- isEmpty(QMAKE_LRELEASE) {
- win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
- else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
- }
- isEmpty(TS_DIR):TS_DIR = i18n
- TSQM.name = lrelease \
- ${QMAKE_FILE_IN}
- TSQM.input = TRANSLATIONS
- TSQM.output = $$TS_DIR/${QMAKE_FILE_BASE}.qm
- TSQM.commands = $$QMAKE_LRELEASE \
- ${QMAKE_FILE_IN}
- TSQM.CONFIG = no_link
- QMAKE_EXTRA_COMPILERS += TSQM
- PRE_TARGETDEPS += compiler_TSQM_make_all
- }
- else:message(No translation files in project)
|