aboutsummaryrefslogtreecommitdiffstats
path: root/qmake-features
diff options
context:
space:
mode:
authorAntti Hölttä <AHoelttae@luxoft.com>2018-06-05 14:33:14 +0200
committerBramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>2018-07-18 09:03:35 +0000
commit957981706befbbad33d5229dcfef05b4e05c2813 (patch)
tree9ae9d71c59798832c8639f88ffd91a419355874e /qmake-features
parentc0045aae8289d011c5d980df02676e6d33bff4e2 (diff)
[android] Port Neptune3 for Android
Make Neptune runnable on android. Not fully featured, but at least showing the general look and some basic apps. Change-Id: I27958a377c36958001015983f712d4abcb391db7 Reviewed-by: Lukáš Tinkl <ltinkl@luxoft.com> Reviewed-by: Bramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>
Diffstat (limited to 'qmake-features')
-rw-r--r--qmake-features/qmlplugin.prf6
1 files changed, 4 insertions, 2 deletions
diff --git a/qmake-features/qmlplugin.prf b/qmake-features/qmlplugin.prf
index 73ba3efa..c59b244a 100644
--- a/qmake-features/qmlplugin.prf
+++ b/qmake-features/qmlplugin.prf
@@ -4,7 +4,8 @@ QMAKE_RPATHDIR += "$$INSTALL_PREFIX/long_padding/long_padding/long_padding/long_
CONFIG += skip_target_version_ext
TARGET = $$qtLibraryTarget($$TARGET)
-DESTDIR = $$BUILD_DIR/imports/shared/$$replace(uri, \\., /)
+android: DESTDIR = $$BUILD_DIR/imports/cpp/$$replace(uri, \\., /)
+else: DESTDIR = $$BUILD_DIR/imports/shared/$$replace(uri, \\., /)
OTHER_FILES = qmldir
@@ -19,7 +20,8 @@ OTHER_FILES = qmldir
include(../config.pri)
qmldir.files = qmldir
-installPath = $$INSTALL_PREFIX/neptune3/imports/shared/$$replace(uri, \\., /)
+android: installPath = $$INSTALL_PREFIX/imports/cpp/$$replace(uri, \\., /)
+else: installPath = $$INSTALL_PREFIX/neptune3/imports/shared/$$replace(uri, \\., /)
qmldir.path = $$installPath
target.path = $$installPath
INSTALLS += target qmldir