Friendiqa/source-android/friendiqa.pro

80 lines
2.1 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
2018-11-09 22:06:13 +01:00
QT += qml quick gui widgets androidextras sql webview
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 \
common/uploadableimage.cpp \
common/xhr.cpp \
2017-11-07 21:57:40 +01:00
common/filesystem.cpp \
2019-01-09 22:03:16 +01:00
common/remoteauthasyncimageprovider.cpp \
common/updatenews.cpp \
common/alarmandroid.cpp
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 \
android/src/ExampleService.java
2017-01-26 21:55:31 +01:00
2017-12-07 22:05:39 +01:00
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_EXTRA_LIBS = \
$$PWD/android/libcrypto.so \
$$PWD/android/libssl.so
}