From c4af45c2914381172e1bd7ee528481edaa2fff1a Mon Sep 17 00:00:00 2001 From: Qt by Nokia Date: Wed, 27 Apr 2011 12:05:43 +0200 Subject: Initial import from the monolithic Qt. This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12 --- examples/script/context2d/context2d.pro | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 examples/script/context2d/context2d.pro (limited to 'examples/script/context2d/context2d.pro') diff --git a/examples/script/context2d/context2d.pro b/examples/script/context2d/context2d.pro new file mode 100644 index 0000000..d43999f --- /dev/null +++ b/examples/script/context2d/context2d.pro @@ -0,0 +1,32 @@ +TEMPLATE = app +QT += script +# Input +HEADERS += qcontext2dcanvas.h \ + context2d.h \ + domimage.h \ + environment.h \ + window.h +SOURCES += qcontext2dcanvas.cpp \ + context2d.cpp \ + domimage.cpp \ + environment.cpp \ + window.cpp \ + main.cpp +RESOURCES += context2d.qrc + +contains(QT_CONFIG, scripttools): QT += scripttools + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/qtscript/script/context2d +sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS context2d.pro scripts +sources.path = $$[QT_INSTALL_EXAMPLES]/qtscript/script/context2d +INSTALLS += target sources + +symbian:{ + TARGET.UID3 = 0xA000C608 + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.EPOCHEAPSIZE = 0x200000 0xA00000 + contextScripts.path = . + contextScripts.files = scripts + DEPLOYMENT += contextScripts +} -- cgit v1.2.1