summaryrefslogtreecommitdiffstats
path: root/demos/embedded/qmltwitter/qmltwitter.pro
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@nokia.com>2010-05-11 22:24:55 (GMT)
committerAlessandro Portale <alessandro.portale@nokia.com>2010-06-03 14:15:24 (GMT)
commitf535efb015314fb07573739fd33aa00ba5502bde (patch)
treed09b43da83d6f4e4c69668129a6ffbdf3151d0e4 /demos/embedded/qmltwitter/qmltwitter.pro
parent095e74825d588fc260f06fba3a1c32ac837cf73d (diff)
downloadQt-f535efb015314fb07573739fd33aa00ba5502bde.zip
Qt-f535efb015314fb07573739fd33aa00ba5502bde.tar.gz
Qt-f535efb015314fb07573739fd33aa00ba5502bde.tar.bz2
Standalone Qml demos for Fluidlauncher
There new Qml demos are self-contained Qml applications, ready to be run on Symbian devices: qmlcalculator qmlclocks qmldialcontrol qmleasing qmlflickr qmlphotoviewer qmltwitter Since these depend on the DEPLOYMENT feature of qmake, they currently will only work for Symbian and theoretically WinCE/Mobile. TODO: create INSTALLS rules in order to support more platforms. Task-number: QTBUG-10148 Reviewed-By: axis
Diffstat (limited to 'demos/embedded/qmltwitter/qmltwitter.pro')
-rw-r--r--demos/embedded/qmltwitter/qmltwitter.pro14
1 files changed, 14 insertions, 0 deletions
diff --git a/demos/embedded/qmltwitter/qmltwitter.pro b/demos/embedded/qmltwitter/qmltwitter.pro
new file mode 100644
index 0000000..7f9be57
--- /dev/null
+++ b/demos/embedded/qmltwitter/qmltwitter.pro
@@ -0,0 +1,14 @@
+!symbian:!wince*:warning("DEPLOYMENT support required. This project only works on Symbian and WinCE.")
+
+QT += declarative network
+SOURCES += $$PWD/qmltwitter.cpp
+include($$PWD/deployment.pri)
+
+symbian {
+ TARGET.UID3 = 0x$$qmltwitter_uid3 # defined in deployment.pri
+ include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
+ INCLUDEPATH += $$QT_SOURCE_TREE/examples/network/qftp/
+ LIBS += -lesock -lcommdb -linsock # For IAP selection
+ TARGET.CAPABILITY = NetworkServices
+ TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
+}