123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- # Add more folders to ship with the application, here
- folder_01.source = smiles
- folder_01.target =
- DEPLOYMENTFOLDERS = folder_01
- QT += declarative
- QT += network
- # Additional import path used to resolve QML modules in Creator's code model
- QML_IMPORT_PATH =
- symbian:TARGET.UID3 = 0xE22AC278
- # 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 += feedback
- # Speed up launching on MeeGo/Harmattan when using applauncherd daemon
- CONFIG += qdeclarative-boostable
- # For the #include <meventfeed.h>
- CONFIG += meegotouchevents
- # 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 \
- ima/minversemousearea.cpp \
- MyXmppClient.cpp \
- listmodel.cpp \
- rosterlistmodel.cpp \
- rosteritemmodel.cpp \
- mycache.cpp \
- storevcard.cpp \
- mysettings.cpp \
- messagewrapper.cpp \
- msgitemmodel.cpp \
- msglistmodel.cpp \
- chatslistmodel.cpp \
- chatsitemmodel.cpp \
- accountsitemmodel.cpp \
- accountslistmodel.cpp \
- meegimsettings.cpp \
- qmlvcard.cpp \
- qmlrostermodel.cpp \
- mysmiles.cpp \
- smilesitemmodel.cpp \
- smileslistmodel.cpp \
- xmppmuc.cpp \
- rosterxml.cpp \
- harmattanfeed.cpp \
- smthemeitemmodel.cpp \
- smthemelistmodel.cpp
- HEADERS += MyXmppClient.h \
- ima/minversemousearea.h \
- listmodel.h \
- rosterlistmodel.h \
- rosteritemmodel.h \
- mycache.h \
- storevcard.h \
- mysettings.h \
- messagewrapper.h \
- msgitemmodel.h \
- msglistmodel.h \
- chatslistmodel.h \
- chatsitemmodel.h \
- accountsitemmodel.h \
- accountslistmodel.h \
- meegimsettings.h \
- qmlvcard.h \
- qmlrostermodel.h \
- mysmiles.h \
- smilesitemmodel.h \
- smileslistmodel.h \
- xmppmuc.h \
- rosterxml.h \
- harmattanfeed.h \
- smthemeitemmodel.h \
- smthemelistmodel.h
- # 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 \
- qml/ChatsPage.qml \
- qml/DialogAccountOptions.qml \
- qml/Button.qml \
- qml/MyTextInput.qml \
- qml/MyTextEdit.qml \
- qml/AccountAddPage.qml \
- qml/MyCheckBox.qml \
- qml/DialogQuery.qml \
- qml/TopInfoPanel.qml \
- qml/main.js \
- qml/MainView.qml \
- qml/Notify.qml \
- qml/VCardPage.qml \
- qml/AboutPage.qml \
- qml/DialogSmiles.qml \
- qml/SettingsPage.qml \
- qml/DialogInfo.qml \
- README \
- qml/main.qml \
- qml/MyPage.qml \
- qml/RosterPage.qml \
- qml/MyTheme.qml \
- qml/HorizontalGradient.qml \
- qml/ToolBar.qml \
- qml/ToolButton.qml \
- qml/TopPanel.qml \
- qml/DialogMyStatus.qml \
- qml/DialogOptionsRoster.qml \
- qml/MessagesPage.qml \
- qml/ShadowRectangle.qml \
- qml/AccountsPage.qml \
- qml/AddContactPage.qml \
- qml/DialogEdit.qml \
- qml/DialogLiquid.qml \
- qml/DialogSubscribes.qml \
- qml/HiddenBlock.qml \
- qml/DialogFiles.qml \
- qml/Magnifier.qml \
- qml/Magnifier.js \
- qml/MucPage.qml \
- qml/DialogMucInvite.qml \
- qml/MyTextEdit2.qml \
- qml/DialogMsgOptions.qml \
- qml/MyTextInput2.qml \
- qml/MucLoginPage.qml \
- qml/DialogMucOptions.qml \
- qml/DiscoveryPage.qml
- #OTHER_FILES += qml/nokia_components/*.js \
- # qml/nokia_components/*.qml
- #qxmpp
- INCLUDEPATH += qxmpp/base/ qxmpp/client
- include(qxmpp/qxmpp.pri)
- RESOURCES += \
- resources.qrc
|