[Qt-qml] Help for bringing QtQuick Apps for Symbian device
Ravindra Mitke
rvmitke at gmail.com
Tue Jan 4 11:42:44 CET 2011
HI All,
I want to create some QtQuick Apps for my Symbian device, but i can't bring
them to run.
i am getting below error:
*:: error: No rule to make target
`\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\LIB\QtDeclarative.dso', needed
by `\NokiaQtSDK\Symbian\SDK\epoc32\release\gcce\udeb\animationpr1.exe'.
Stop.*
I have Qt Creator 2.1 installed & new version of Qt libs 4.7.1 for Symbian
devices.
When I make a new QtQuick Application and import a qml file to the Project,
i can run the program in the Simulator, but not on Nokia N8.
*main.cpp code:*
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <QApplication>
#include <QDeclarativeView>
int main(int argc, char *argv[])
{
//![0]
QApplication app(argc, argv);
QDeclarativeView view;
view.setSource(QUrl::fromLocalFile("color-animation.qml"));
view.show();
return app.exec();
//![2]
}
*.pro file code:*
QT += core gui
QT += declarative
TARGET = animationpr1
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
CONFIG += mobility
MOBILITY =
symbian {
TARGET.UID3 = 0xe29e1a1a
# TARGET.CAPABILITY +=
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x800000
}
Please let me know whether I am doing anything wrong. **
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt.nokia.com/pipermail/qt-qml/attachments/20110104/79f18b5d/attachment-0001.html
More information about the Qt-qml
mailing list