forked from mrkite/minutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminutor.pro
144 lines (137 loc) · 2.93 KB
/
minutor.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
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
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 \
chunkmath.h \
entityevaluator.h \
labelledslider.h \
biomeidentifier.h \
blockidentifier.h \
chunk.h \
chunkcache.h \
chunkloader.h \
chunkrenderer.h \
definitionmanager.h \
definitionupdater.h \
dimensionidentifier.h \
entity.h \
entityidentifier.h \
generatedstructure.h \
json.h \
mapview.h \
minutor.h \
nbt.h \
overlayitem.h \
properties.h \
propertietreecreator.h \
range.h \
rectangleinnertoouteriterator.h \
searchblockpluginwidget.h \
searchchunkswidget.h \
searchentitypluginwidget.h \
searchplugininterface.h \
searchresultwidget.h \
searchtextwidget.h \
settings.h \
village.h \
worldsave.h \
zipreader.h \
clamp.h \
jumpto.h \
pngexport.h \
flatteningconverter.h \
paletteentry.h
SOURCES += \
entityevaluator.cpp \
labelledslider.cpp \
biomeidentifier.cpp \
blockidentifier.cpp \
chunk.cpp \
chunkcache.cpp \
chunkloader.cpp \
chunkrenderer.cpp \
definitionmanager.cpp \
definitionupdater.cpp \
dimensionidentifier.cpp \
entity.cpp \
entityidentifier.cpp \
generatedstructure.cpp \
json.cpp \
main.cpp \
mapview.cpp \
minutor.cpp \
nbt.cpp \
properties.cpp \
propertietreecreator.cpp \
searchblockpluginwidget.cpp \
searchchunkswidget.cpp \
searchentitypluginwidget.cpp \
searchresultwidget.cpp \
searchtextwidget.cpp \
settings.cpp \
village.cpp \
worldsave.cpp \
zipreader.cpp \
jumpto.cpp \
pngexport.cpp \
flatteningconverter.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 += zlib
}
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 += \
properties.ui \
searchblockpluginwidget.ui \
searchchunkswidget.ui \
searchentitypluginwidget.ui \
searchresultwidget.ui \
searchtextwidget.ui \
settings.ui \
jumpto.ui \
pngexport.ui