The Following User Says Thank You to stuartmarsden For This Useful Post: | ||
![]() |
2012-07-30
, 19:41
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#12
|
The Following User Says Thank You to ajalkane For This Useful Post: | ||
![]() |
2012-07-30
, 20:09
|
Posts: 9 |
Thanked: 8 times |
Joined on May 2012
@ Finland
|
#13
|
export QML_IMPORT_PATH=/opt/qt5/imports
file:///opt/helloqt5/qml/helloqt5/main.qml:2:1: plugin cannot be loaded for module "com.nokia.meego": Unknown error import com.nokia.meego 1.1
![]() |
2012-07-30
, 22:27
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#14
|
![]() |
2012-08-12
, 04:34
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#15
|
This is probably the same issue with the libraries and I will have to point it at the qt5 QML MODULES.Code:file:///opt/helloqt5/qml/helloqt5/main.qml:2:1: module "com.nokia.meego" is not installed import com.nokia.meego 1.1 ^
Do not know how yet but I am sure google will help.
QML_IMPORT_PATH=/opt/qt5/imports
import QtQuick 2.0 import com.nokia.meego 2.0
![]() |
2012-08-12
, 05:28
|
Posts: 1,539 |
Thanked: 1,604 times |
Joined on Oct 2011
@ With my N9
|
#16
|
You can point to the import directories like this:
And remember to replace the versions to:Code:QML_IMPORT_PATH=/opt/qt5/imports
Code:import QtQuick 2.0 import com.nokia.meego 2.0
![]() |
2012-08-13
, 12:39
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#17
|
QMetaProperty::read: Unable to handle unregistered datatype 'QDeclarativeComponent*' for property 'MDeclarativeInputContext::customSoftwareInputPanelComponent' Segmentation fault
![]() |
2012-08-22
, 23:04
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#18
|
![]() |
2012-08-31
, 12:45
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#19
|
The Following 3 Users Say Thank You to ajalkane For This Useful Post: | ||
![]() |
2012-09-03
, 14:59
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#20
|
[sbox-HARMATTAN_ARMEL: ~] > apt-cache search qt5 qt5-3d - Qt 3D module qt5-base - Qt Base modules. qt5-declarative - Qt Declarative module qt5-jsbackend - Qt V8 Javascript Backend module qt5-location - Qt Location module qt5-multimedia - Qt Multimedia module qt5-script - Qt Script module qt5-sensors - Qt Sensors module qt5-xmlpatterns - Qt XML Patterns module
The Following User Says Thank You to ajalkane For This Useful Post: | ||
The initial attempt at running failed. It could not find the qt5 libraries. These have not been added to the ld cache when the qt5 packages were installed.
I got around this with
Do not know how yet but I am sure google will help.