summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-11-18 19:18:09 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-11-19 17:18:33 -0800
commite73a82cd706ba5ffee9ea57d86016a251dc4ab61 (patch)
tree630255a8c7efc2f51db7ebeea53be8b635ae5ea4
parent64913bba475ae04cd3300e73f7de8b81b1021e38 (diff)
downloadsubsurface-e73a82cd706ba5ffee9ea57d86016a251dc4ab61.tar.gz
build-system: combine iOS and Android Subsurface-mobile.pro
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--Subsurface-mobile.pro (renamed from Subsurface-mobile-android.pro)115
-rwxr-xr-xpackaging/android/qmake-build.sh2
2 files changed, 75 insertions, 42 deletions
diff --git a/Subsurface-mobile-android.pro b/Subsurface-mobile.pro
index a0ead0d2b..f24e1d8f2 100644
--- a/Subsurface-mobile-android.pro
+++ b/Subsurface-mobile.pro
@@ -1,6 +1,6 @@
TEMPLATE = app
-QT += qml quick quickcontrols2 widgets positioning concurrent svg bluetooth androidextras
+QT += qml quick quickcontrols2 widgets positioning concurrent svg bluetooth
DEFINES += SUBSURFACE_MOBILE BT_SUPPORT BLE_SUPPORT
@@ -46,7 +46,6 @@ SOURCES += subsurface-mobile-main.cpp \
core/file.c \
core/fulltext.cpp \
core/subsurfacestartup.c \
- core/android.cpp \
core/profile.c \
core/device.cpp \
core/dive.c \
@@ -76,7 +75,6 @@ SOURCES += subsurface-mobile-main.cpp \
core/statistics.c \
core/worldmap-save.c \
core/libdivecomputer.c \
- core/serial_usb_android.cpp \
core/version.c \
core/save-git.c \
core/datatrak.c \
@@ -163,37 +161,6 @@ SOURCES += subsurface-mobile-main.cpp \
profile-widget/diverectitem.cpp \
profile-widget/divetextitem.cpp
-RESOURCES += mobile-widgets/qml/mobile-resources.qrc \
- map-widget/qml/map-widget.qrc \
- packaging/android/translations.qrc
-
-# at link time our CWD is parallel to the install-root
-LIBS += ../install-root-$${QT_ARCH}/lib/libdivecomputer.a \
- ../install-root-$${QT_ARCH}/lib/libgit2.a \
- ../install-root-$${QT_ARCH}/lib/libzip.a \
- ../install-root-$${QT_ARCH}/lib/libxslt.a \
- ../install-root-$${QT_ARCH}/lib/libxml2.a \
- ../install-root-$${QT_ARCH}/lib/libsqlite3.a \
- ../install-root-$${QT_ARCH}/lib/libssl_1_1.so \
- ../install-root-$${QT_ARCH}/lib/libcrypto_1_1.so \
- ../googlemaps-build/libqtgeoservices_googlemaps_$${QT_ARCH}.so
-
-# ensure that the openssl libraries are bundled into the app
-ANDROID_EXTRA_LIBS += \
- ../install-root-$${QT_ARCH}/lib/libcrypto_1_1.so \
- ../install-root-$${QT_ARCH}/lib/libssl_1_1.so
-
-INCLUDEPATH += ../install-root-$${QT_ARCH}/include/ \
- ../install-root/lib/libzip/include \
- ../install-root-$${QT_ARCH}/include/libxstl \
- ../install-root-$${QT_ARCH}/include/libxml2 \
- ../install-root-$${QT_ARCH}/include/libexstl \
- ../install-root-$${QT_ARCH}/include/openssl \
- . \
- core \
- mobile-widgets/qml/kirigami/src/libkirigami
-
-
HEADERS += \
commands/command_base.h \
commands/command.h \
@@ -332,13 +299,79 @@ HEADERS += \
include(mobile-widgets/qml/kirigami/kirigami.pri)
+RESOURCES += mobile-widgets/qml/mobile-resources.qrc \
+ map-widget/qml/map-widget.qrc
+
android {
- ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-mobile
- ANDROID_VERSION_CODE = $$BUILD_NR
- ANDROID_VERSION_NAME = $$BUILD_VERSION_NAME
+ SOURCES += core/android.cpp \
+ core/serial_usb_android.cpp
+ RESOURCES += packaging/android/translations.qrc
+ QT += androidextras
+ ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-mobile
+ ANDROID_VERSION_CODE = $$BUILD_NR
+ ANDROID_VERSION_NAME = $$BUILD_VERSION_NAME
+
+ DISTFILES += \
+ android-build/AndroidManifest.xml \
+ android-build/build.gradle \
+ android-build/res/values/libs.xml
+
+ # at link time our CWD is parallel to the install-root
+ LIBS += ../install-root-$${QT_ARCH}/lib/libdivecomputer.a \
+ ../install-root-$${QT_ARCH}/lib/libgit2.a \
+ ../install-root-$${QT_ARCH}/lib/libzip.a \
+ ../install-root-$${QT_ARCH}/lib/libxslt.a \
+ ../install-root-$${QT_ARCH}/lib/libxml2.a \
+ ../install-root-$${QT_ARCH}/lib/libsqlite3.a \
+ ../install-root-$${QT_ARCH}/lib/libssl_1_1.so \
+ ../install-root-$${QT_ARCH}/lib/libcrypto_1_1.so \
+ ../googlemaps-build/libqtgeoservices_googlemaps_$${QT_ARCH}.so
+
+ # ensure that the openssl libraries are bundled into the app
+ ANDROID_EXTRA_LIBS += \
+ ../install-root-$${QT_ARCH}/lib/libcrypto_1_1.so \
+ ../install-root-$${QT_ARCH}/lib/libssl_1_1.so
+
+ INCLUDEPATH += ../install-root-$${QT_ARCH}/include/ \
+ ../install-root/lib/libzip/include \
+ ../install-root-$${QT_ARCH}/include/libxstl \
+ ../install-root-$${QT_ARCH}/include/libxml2 \
+ ../install-root-$${QT_ARCH}/include/libexstl \
+ ../install-root-$${QT_ARCH}/include/openssl \
+ . \
+ core \
+ mobile-widgets/qml/kirigami/src/libkirigami
+}
+
+ios {
+ SOURCES += core/ios.cpp
+ RESOURCES += packaging/ios/translations.qrc
+ QMAKE_IOS_DEPLOYMENT_TARGET = 10.0
+ QMAKE_TARGET_BUNDLE_PREFIX = org.subsurface-divelog
+ QMAKE_BUNDLE = subsurface-mobile
+ QMAKE_INFO_PLIST = packaging/ios/Info.plist
+ QMAKE_ASSET_CATALOGS += packaging/ios/storeIcon.xcassets
+ app_launch_images.files = packaging/ios/SubsurfaceMobileLaunch.xib $$files(packaging/ios/SubsurfaceMobileLaunchImage*.png)
+ images.files = icons/subsurface-mobile-icon.png
+ QMAKE_BUNDLE_DATA += app_launch_images images
+
+ LIBS += ../install-root/ios/lib/libdivecomputer.a \
+ ../install-root/ios/lib/libgit2.a \
+ ../install-root/ios/lib/libzip.a \
+ ../install-root/ios/lib/libxslt.a \
+ ../googlemaps/build-ios/libqtgeoservices_googlemaps.a \
+ -liconv \
+ -lsqlite3 \
+ -lxml2
+
+ INCLUDEPATH += ../install-root/ios/include/ \
+ ../install-root/lib/libzip/include \
+ ../install-root/ios/include/libxstl \
+ ../install-root/ios/include/libexstl \
+ ../install-root/ios/include/openssl \
+ . \
+ ./core \
+ ./mobile-widgets/qml/kirigami/src/libkirigami \
+ /usr/include/libxml2
- DISTFILES += \
- android-build/AndroidManifest.xml \
- android-build/build.gradle \
- android-build/res/values/libs.xml
}
diff --git a/packaging/android/qmake-build.sh b/packaging/android/qmake-build.sh
index 6b4321ad2..2db40b59b 100755
--- a/packaging/android/qmake-build.sh
+++ b/packaging/android/qmake-build.sh
@@ -348,7 +348,7 @@ popd
# call qmake to set up the build
echo "Run qmake to setup the Subsurface-mobile build for all architectures"
-$QMAKE BUILD_NR="$BUILDNR" BUILD_VERSION_NAME="$SUBSURFACE_MOBILE_VERSION" ANDROID_ABIS="$BUILD_ABIS" "$SUBSURFACE_SOURCE"/Subsurface-mobile-android.pro
+$QMAKE BUILD_NR="$BUILDNR" BUILD_VERSION_NAME="$SUBSURFACE_MOBILE_VERSION" ANDROID_ABIS="$BUILD_ABIS" "$SUBSURFACE_SOURCE"/Subsurface-mobile.pro
# if this isn't just a quick rebuild compile the translations