forked from mrkite/minutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminutor.pro
106 lines (101 loc) · 2.04 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
TEMPLATE = app
TARGET = minutor
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += c++14
QT += widgets network
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 += \
zlib/zlib.h \
zlib/zconf.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 \
settings.h \
village.h \
worldsave.h \
zipreader.h \
clamp.h \
jumpto.h \
pngexport.h \
flatteningconverter.h \
paletteentry.h
SOURCES += \
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 \
settings.cpp \
village.cpp \
worldsave.cpp \
zipreader.cpp \
jumpto.cpp \
pngexport.cpp \
flatteningconverter.cpp
RESOURCES = minutor.qrc
win32: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
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 \
settings.ui \
jumpto.ui \
pngexport.ui