-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathminutor.pro
More file actions
163 lines (156 loc) · 3.78 KB
/
minutor.pro
File metadata and controls
163 lines (156 loc) · 3.78 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
TEMPLATE = app
TARGET = minutor
CONFIG += c++14
QT += widgets network concurrent
QMAKE_INFO_PLIST = minutor.plist
unix:LIBS += -lz
win32:RC_FILE += winicon.rc
macx:ICON=icon.icns
#for profiling
#*-g++* {
# QMAKE_CXXFLAGS += -pg
# QMAKE_LFLAGS += -pg
#}
# Input
HEADERS += \
chunkid.h \
java.h \
labelledseparator.h \
labelledslider.h \
clamp.h \
chunk.h \
chunkcache.h \
chunkloader.h \
chunkrenderer.h \
identifier/biomeidentifier.h \
identifier/blockidentifier.h \
identifier/definitionmanager.h \
identifier/definitionupdater.h \
identifier/dimensionidentifier.h \
identifier/entityidentifier.h \
identifier/flatteningconverter.h \
jumpto.h \
lz4/lz4.h \
lz4/xxhash.h \
mapview.h \
minutor.h \
nbt/nbt.h \
nbt/tag.h \
nbt/tagdatastream.h \
overlay/entity.h \
overlay/generatedstructure.h \
overlay/overlayitem.h \
overlay/properties.h \
overlay/propertietreecreator.h \
overlay/village.h \
paletteentry.h \
pngexport.h \
search/entityevaluator.h \
search/range.h \
search/rectangleinnertoouteriterator.h \
search/searchblockplugin.h \
search/searchchunksdialog.h \
search/searchentityplugin.h \
search/searchplugininterface.h \
search/searchrangewidget.h \
search/searchresultitem.h \
search/searchresultwidget.h \
search/searchtextwidget.h \
search/statisticdialog.h \
search/statisticlabel.h \
search/statisticresultitem.h \
settings.h \
worldinfo.h \
worldsave.h \
zipreader.h
SOURCES += \
java.cpp \
labelledseparator.cpp \
labelledslider.cpp \
chunk.cpp \
chunkcache.cpp \
chunkloader.cpp \
chunkrenderer.cpp \
identifier/biomeidentifier.cpp \
identifier/blockidentifier.cpp \
identifier/definitionmanager.cpp \
identifier/definitionupdater.cpp \
identifier/dimensionidentifier.cpp \
identifier/entityidentifier.cpp \
identifier/flatteningconverter.cpp \
jumpto.cpp \
lz4/lz4.c \
lz4/xxhash.c \
main.cpp \
mapview.cpp \
minutor.cpp \
nbt/nbt.cpp \
nbt/tag.cpp \
nbt/tagdatastream.cpp \
overlay/entity.cpp \
overlay/generatedstructure.cpp \
overlay/properties.cpp \
overlay/propertietreecreator.cpp \
overlay/village.cpp \
pngexport.cpp \
search/entityevaluator.cpp \
search/searchblockplugin.cpp \
search/searchchunksdialog.cpp \
search/searchentityplugin.cpp \
search/searchrangewidget.cpp \
search/searchresultwidget.cpp \
search/searchtextwidget.cpp \
search/statisticdialog.cpp \
settings.cpp \
worldinfo.cpp \
worldsave.cpp \
zipreader.cpp
RESOURCES = minutor.qrc
win32 {
HEADERS += \
zlib/crc32.h \
zlib/deflate.h \
zlib/gzguts.h \
zlib/inffast.h \
zlib/inffixed.h \
zlib/inflate.h \
zlib/inftrees.h \
zlib/trees.h \
zlib/zconf.h \
zlib/zlib.h \
zlib/zutil.h
SOURCES += \
zlib/adler32.c \
zlib/compress.c \
zlib/crc32.c \
zlib/deflate.c \
zlib/gzclose.c \
zlib/gzlib.c \
zlib/gzread.c \
zlib/gzwrite.c \
zlib/infback.c \
zlib/inffast.c \
zlib/inflate.c \
zlib/inftrees.c \
zlib/trees.c \
zlib/uncompr.c \
zlib/zutil.c
INCLUDEPATH += identifer json nbt overlay search zlib lz4
}
desktopfile.path = /usr/share/applications
desktopfile.files = minutor.desktop
pixmapfile.path = /usr/share/pixmaps
pixmapfile.files = minutor.png minutor.xpm
target.path = /usr/bin
INSTALLS += desktopfile pixmapfile target
FORMS += \
minutor.ui \
jumpto.ui \
pngexport.ui \
overlay/properties.ui \
search/searchchunksdialog.ui \
search/searchrangewidget.ui \
search/searchresultwidget.ui \
search/searchtextwidget.ui \
search/statisticdialog.ui \
settings.ui