diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2010-05-11 22:24:55 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2010-06-03 14:15:24 (GMT) |
commit | f535efb015314fb07573739fd33aa00ba5502bde (patch) | |
tree | d09b43da83d6f4e4c69668129a6ffbdf3151d0e4 /demos/embedded/qmlflickr/qmlflickr.pro | |
parent | 095e74825d588fc260f06fba3a1c32ac837cf73d (diff) | |
download | Qt-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/qmlflickr/qmlflickr.pro')
-rw-r--r-- | demos/embedded/qmlflickr/qmlflickr.pro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/demos/embedded/qmlflickr/qmlflickr.pro b/demos/embedded/qmlflickr/qmlflickr.pro new file mode 100644 index 0000000..e706134 --- /dev/null +++ b/demos/embedded/qmlflickr/qmlflickr.pro @@ -0,0 +1,14 @@ +!symbian:!wince*:warning("DEPLOYMENT support required. This project only works on Symbian and WinCE.") + +QT += declarative network +SOURCES += $$PWD/qmlflickr.cpp +include($$PWD/deployment.pri) + +symbian { + TARGET.UID3 = 0x$$qmlflickr_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 +} |