forked from CMon/QHumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QHumble.pro
40 lines (32 loc) · 821 Bytes
/
QHumble.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
TEMPLATE = app
QT += qml quick quickcontrols2 widgets sql webview svg xml
SOURCES += main.cpp \
humblebundleapi.cpp \
settings.cpp \
humbledb.cpp \
db/purchase.cpp \
db/product.cpp \
db/download.cpp \
db/file.cpp \
db/customquerymodel.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
humblebundleapi.h \
settings.h \
humbledb.h \
db/purchase.h \
db/product.h \
db/download.h \
db/file.h \
db/customquerymodel.h
DISTFILES += \
LICENSE.txt
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
ANDROID_EXTRA_LIBS = \
$$PWD/android-ssl/aarch64/libcrypto.so \
$$PWD/android-ssl/aarch64/libssl.so
}