-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathHoststool.pro
More file actions
108 lines (92 loc) · 2.4 KB
/
Hoststool.pro
File metadata and controls
108 lines (92 loc) · 2.4 KB
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-04T02:30:49
#
#-------------------------------------------------
QT += core gui network sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Hoststool
TEMPLATE = app
SOURCES += main.cpp\
gui/qdialogui.cpp \
gui/qdialogdaemon.cpp \
util/commonutil.cpp \
util/makehosts.cpp \
util/retrievedata.cpp \
gui/qsubchkupdate.cpp \
gui/qsubchkconnection.cpp \
gui/qdialogslots.cpp \
gui/qsubfetchupdate.cpp \
gui/qsubmakehosts.cpp \
lib/quazip/zip.c \
lib/quazip/unzip.c \
lib/quazip/quazipnewinfo.cpp \
lib/quazip/quazipfileinfo.cpp \
lib/quazip/quazipfile.cpp \
lib/quazip/quazipdir.cpp \
lib/quazip/quazip.cpp \
lib/quazip/quaziodevice.cpp \
lib/quazip/quagzipfile.cpp \
lib/quazip/quacrc32.cpp \
lib/quazip/quaadler32.cpp \
lib/quazip/qioapi.cpp \
lib/quazip/JlCompress.cpp \
util/roottools.cpp
HEADERS += \
gui/qdialogui.h \
gui/qdialogdaemon.h \
version.h \
util/commonutil.h \
util/makehosts.h \
util/retrievedata.h \
gui/qsubchkupdate.h \
gui/qsubchkconnection.h \
gui/qdialogslots.h \
gui/qsubfetchupdate.h \
gui/qsubmakehosts.h \
lib/quazip/zip.h \
lib/quazip/unzip.h \
lib/quazip/quazipnewinfo.h \
lib/quazip/quazipfileinfo.h \
lib/quazip/quazipfile.h \
lib/quazip/quazipdir.h \
lib/quazip/quazip_global.h \
lib/quazip/quazip.h \
lib/quazip/quaziodevice.h \
lib/quazip/quagzipfile.h \
lib/quazip/quacrc32.h \
lib/quazip/quachecksum32.h \
lib/quazip/quaadler32.h \
lib/quazip/JlCompress.h \
lib/quazip/ioapi.h \
lib/quazip/crypt.h \
hoststool.h \
util/roottools.h
FORMS += \
util_ui.ui \
util_ui_ios.ui
CONFIG += mobility
MOBILITY =
RESOURCES += \
res/util.qrc \
res/style.qrc \
res/conf.qrc \
res/lang.qrc
DISTFILES += \
android/res/values/libs.xml \
android/build.gradle \
android/AndroidManifest.xml \
android/src/org/qtproject/RootHelper.java
TRANSLATIONS += en_US.ts \
zh_CN.ts
BUNDLE_DATA.files = $$PWD/res/img/icons/ios_ic_launcher.png
QMAKE_BUNDLE_DATA += BUNDLE_DATA
QMAKE_INFO_PLIST = $$PWD/ios/Info.plist
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
INCLUDEPATH += $$PWD/
DEFINES += QUAZIP_STATIC #HOSTS_TEST
#Lib
!win32 : LIBS += -lz
win32:{
DEFINES += WIN_ZLIB
}