Friendiqa/source-android/friendiqa.pro

90 lines
2.5 KiB
Prolog
Raw Normal View History

2017-01-26 21:55:31 +01:00
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the following needs to be done
# to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
# - translation filenames have to be changed
# The name of your application
2017-11-07 21:57:40 +01:00
TEMPLATE = app
2017-01-26 21:55:31 +01:00
TARGET = friendiqa
2017-11-24 22:12:03 +01:00
CONFIG += release
2019-12-10 21:12:32 +01:00
QT += qml quick gui widgets androidextras sql webview #webengine
2017-01-26 21:55:31 +01:00
2017-11-07 21:57:40 +01:00
include(androidnative.pri/androidnative.pri)
2017-01-26 21:55:31 +01:00
SOURCES += common/friendiqa.cpp \
2020-11-25 21:40:17 +01:00
common/uploadableimage.cpp \
2017-01-26 21:55:31 +01:00
common/xhr.cpp \
2020-11-25 21:40:17 +01:00
common/filesystemandroid.cpp \
2019-01-09 22:03:16 +01:00
common/remoteauthasyncimageprovider.cpp \
common/updatenews.cpp \
common/alarmandroid.cpp
2020-05-24 21:14:23 +02:00
lupdate_only{
SOURCES = qml/friendiqa.qml \
qml/*.qml
qml/calendarqml/*.qml
qml/configqml/*.qml
qml/genericqml/*.qml
qml/contactqml/*.qml
qml/newsqml/*.qml
qml/photoqml/*.qml
js/*.js
}
2017-11-07 21:57:40 +01:00
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
2017-01-26 21:55:31 +01:00
RESOURCES = application.qrc
OTHER_FILES += qml/friendiqa.qml \
translations/*.ts \
qml/*.qml
qml/newsqml/*.qml
qml/contactqml/*.qml
qml/photoqml/*.qml
qml/configqml/*.qml
js/*.js
2017-05-17 22:01:51 +02:00
TRANSLATIONS += translations/friendiqa-de.ts \
2019-01-09 22:03:16 +01:00
translations/friendiqa-es.ts \
translations/friendiqa-it.ts
2017-11-07 21:57:40 +01:00
2017-01-26 21:55:31 +01:00
HEADERS += \
common/uploadableimage.h \
common/xhr.h \
2018-02-19 22:36:00 +01:00
common/filesystem.h \
2019-01-09 22:03:16 +01:00
common/remoteauthasyncimageprovider.h \
common/updatenews.h \
common/alarm.h
2017-01-26 21:55:31 +01:00
DISTFILES += \
2017-11-07 21:57:40 +01:00
qml/calendarqml/*.qml \
2017-01-26 21:55:31 +01:00
android/AndroidManifest.xml \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradlew \
android/res/values/libs.xml \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.properties \
2017-05-17 22:01:51 +02:00
android/gradlew.bat \
2017-11-07 21:57:40 +01:00
translations/*.ts \
2017-11-24 22:12:03 +01:00
translations/*.qm \
2017-11-07 21:57:40 +01:00
qml/*.qml \
qml/newsqml/*.qml \
qml/contactqml/*.qml \
qml/photoqml/*.qml \
qml/configqml/*.qml \
js/*.js \
android/androidnative.gradle \
android/src/FriendiqaActivity.java \
2020-05-24 21:14:23 +02:00
android/src/FriendiqaService.java
2017-01-26 21:55:31 +01:00
2020-05-24 21:14:23 +02:00
ANDROID_EXTRA_LIBS = $$PWD/android/arm/libcrypto_1_1.so $$PWD/android/arm/libssl_1_1.so $$PWD/android/arm64/libcrypto_1_1.so $$PWD/android/arm64/libssl_1_1.so
2020-11-25 21:40:17 +01:00
ANDROID_ABIS = arm64-v8a
android: include(/home/pankraz/git/android_openssl/openssl.pri)