-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMind.pro
111 lines (96 loc) · 3.98 KB
/
Mind.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
QT += qml quick svg gui core widgets
CONFIG += c++17
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Refer to the documentation for the
# deprecated API to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
src/cpp/importerExporter.cpp \
src/cpp/main.cpp \
src/cpp/mathengine.cpp \
src/cpp/nativeinterface.cpp \
src/cpp/translator.cpp \
src/cpp/userdataprovider.cpp
HEADERS += \
src/cpp/importerExporter.h \
src/cpp/mathengine.h \
src/cpp/nativeinterface.h \
src/cpp/translator.h \
src/cpp/userdataprovider.h
RESOURCES += qml.qrc
TRANSLATIONS = translation/EN.ts translation/CS.ts translation/SK.ts translation/PL.ts translation/FR.ts translation/IT.ts translation/ES.ts translation/RU.ts translation/DE.ts translation/UK.ts translation/NO.ts
TRANSLATIONS += translation/extra/EN.ts translation/extra/CS.ts translation/extra/SK.ts translation/extra/PL.ts translation/extra/FR.ts translation/extra/IT.ts translation/extra/ES.ts translation/extra/RU.ts translation/extra/DE.ts translation/UK.ts
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES += \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradlew \
android/res/values-b+es/strings.xml \
android/res/values-b+fr/strings.xml \
android/res/values-b+it/strings.xml \
android/res/values-b+pl/strings.xml \
android/res/values-b+sk/strings.xml \
android/res/values-b+cs/strings.xml \
android/res/values-b+ru/strings.xml \
android/res/values-b+de/strings.xml \
android/res/values-b+uk/strings.xml \
android/res/values/libs.xml \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew.bat \
android/AndroidManifest.xml \
android/res/values/strings.xml \
android/res/values-b+cs/strings.xml \
android/res/drawable-hdpi/icon.png \
android/res/drawable-ldpi/icon.png \
android/res/drawable-mdpi/icon.png \
android/res/drawable-xhdpi/icon.png \
android/res/drawable-xxhdpi/icon.png \
android/res/drawable-xxxhdpi/icon.png \
android/src/org/dontpanic/NotificationReceiver.java \
android/src/org/dontpanic/NotificationService.java \
android/src/org/dontpanic/RebootReceiver.java \
android/src/org/dontpanic/SetNotificationAlarm.java \
src/qml/qmldir \ \ \
#QT += androidextras
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
QT += core-private
HEADERS += src/cpp/androidnative.h
SOURCES += src/cpp/androidnative.cpp
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android
}
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
QT += core-private
HEADERS += src/cpp/androidnative.h
SOURCES += src/cpp/androidnative.cpp
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android
}
ios: {
BUNDLE_DATA.files = $$files($$PWD/audio/*.mp3)
QMAKE_BUNDLE_DATA += BUNDLE_DATA
QTPLUGIN *= qtaudio_coreaudio
QTPLUGIN *= qtmedia_audioengine
QTPLUGIN *= qavfcamera
QTPLUGIN *= qavfmediaplayer
HEADERS += src/oc/iosnative.h
SOURCES += src/oc/iosnative.mm
OBJECTIVE_SOURCES += src/oc/iosnative.mm \
src/oc/iosnative.h
LIBS += -framework UIKit
LIBS += -framework Foundation
LIBS += -framework UserNotifications
}
#ANDROID_ABIS = armeabi-v7a arm64-v8a