-
Notifications
You must be signed in to change notification settings - Fork 0
/
MCinaBox_Qt.pro
59 lines (47 loc) · 1.57 KB
/
MCinaBox_Qt.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
QT += quick quickcontrols2 svg network
#QT += androidextras #disable this when not build for Android
#QT +=virtualkeyboard
CONFIG += c++11 qtquickcompiler
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
checker.cpp \
downloader.cpp \
game_version_manager.cpp \
main.cpp \
start_game.cpp \
user_manager.cpp \
permissions.cpp
RESOURCES += qml.qrc \
image.qrc
TRANSLATIONS += \
MCinaBox_Qt_zh_CN.ts
CONFIG += lrelease
CONFIG += embed_translations
# 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
HEADERS += \
checker.h \
downloader.h \
game_version_manager.h \
start_game.h \
user_manager.h \
permissions.h
DISTFILES += \
android/AndroidManifest.xml \
android/build.gradle \
android/gradle.properties \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew \
android/gradlew.bat \
android/res/values/libs.xml
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
android: include(android/android_openssl/openssl.pri)