-
Notifications
You must be signed in to change notification settings - Fork 1
/
apkstudio.pro
116 lines (107 loc) · 2.64 KB
/
apkstudio.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
112
113
114
115
116
DEFINES += APP_REV_SHORT=\\\"$$GIT_REV_SHORT\\\"
DEFINES += APP_REV_LONG=\\\"$$GIT_REV_LONG\\\"
HEADERS += \
include/adb.h \
include/apktool.h \
include/buildrunnable.h \
include/coder.h \
include/coderhighlighter.h \
include/coderhighlighterdefinition.h \
include/coderhighlightertheme.h \
include/codersidebar.h \
include/consoledock.h \
include/constants.h \
include/decoderunnable.h \
include/dialog.h \
include/editortabs.h \
include/fileutils.h \
include/findreplace.h \
include/flickcharm.h \
include/ide.h \
include/installrunnable.h \
include/jarsigner.h \
include/java.h \
include/macros.h \
include/menubar.h \
include/pathutils.h \
include/pleasewait.h \
include/preferences.h \
include/preopenapk.h \
include/process.h \
include/projectdock.h \
include/qrc.h \
include/runnable.h \
include/runner.h \
include/settingseditor.h \
include/signexportapk.h \
include/signrunnable.h \
include/statusbar.h \
include/textutils.h \
include/toolbar.h \
include/viewer.h \
include/widgetbar.h \
include/zipalign.h
OTHER_FILES += \
.gitignore \
.travis.yml \
appveyor.yml \
res/highlight/default.theme \
res/highlight/java.def \
res/highlight/numbers.def \
res/highlight/smali.def \
res/highlight/strings.def \
res/highlight/xml.def \
res/highlight/yml.def \
res/html/about.html \
res/lang/en.ts \
res/styles/default.qss \
res/win32.rc \
README.md
QT += core gui widgets
win32:RC_FILE = res/win32.rc
RESOURCES += \
res/all.qrc
SOURCES += \
src/adb.cpp \
src/apktool.cpp \
src/buildrunnable.cpp \
src/coder.cpp \
src/coderhighlighter.cpp \
src/coderhighlighterdefinition.cpp \
src/coderhighlightertheme.cpp \
src/codersidebar.cpp \
src/consoledock.cpp \
src/decoderunnable.cpp \
src/dialog.cpp \
src/editortabs.cpp \
src/fileutils.cpp \
src/findreplace.cpp \
src/flickcharm.cpp \
src/ide.cpp \
src/installrunnable.cpp \
src/jarsigner.cpp \
src/java.cpp \
src/main.cpp \
src/menubar.cpp \
src/pathutils.cpp \
src/pleasewait.cpp \
src/preferences.cpp \
src/preopenapk.cpp \
src/process.cpp \
src/projectdock.cpp \
src/qrc.cpp \
src/runnable.cpp \
src/runner.cpp \
src/settingseditor.cpp \
src/signexportapk.cpp \
src/signrunnable.cpp \
src/statusbar.cpp \
src/textutils.cpp \
src/toolbar.cpp \
src/viewer.cpp \
src/widgetbar.cpp \
src/zipalign.cpp
TARGET = apkstudio
TEMPLATE = app
TRANSLATIONS += \
res/lang/en.ts