
android-lighthouse - issue #88
Problem with deploying qml when compiling on windows (qmlapplicationviewer.pri)
The default qmlapplicationviewer.pri has a bug preventing deployment of QML files when compiled on Windows. By default, the android stuff is only taken into account under the "} else:unix {", thus not activated on windows.
Dumb Patch:
@@ -111,6 +111,7 @@ QMAKE_EXTRA_TARGETS += first copydeploymentfolders } } +} android { installPrefix = /assets } else { @@ -148,7 +149,7 @@ } export(target.path) INSTALLS += target -} +
export (ICON) export (INSTALLS)
Comment #1
Posted on Dec 3, 2011 by Swift HorseThanks for your report, will be fixed soon !
Comment #2
Posted on Dec 3, 2011 by Swift Horse(No comment was entered for this change.)
Status: Accepted
Labels:
Type-Defect
Priority-Critical