forked from mrkite/minutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminutor.pro
67 lines (63 loc) · 1.39 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
TEMPLATE = app
TARGET = minutor
DEPENDPATH += .
INCLUDEPATH += .
QT += widgets network
QMAKE_INFO_PLIST = minutor.plist
unix:LIBS += -lz
win32:LIBS+= $$PWD/zlibstat.lib
win32:RC_FILE += winicon.rc
macx:ICON=icon.icns
#for profiling
#*-g++* {
# QMAKE_CXXFLAGS += -pg
# QMAKE_LFLAGS += -pg
#}
# Input
HEADERS += mapview.h minutor.h nbt.h zlib.h zconf.h \
labelledslider.h \
chunk.h \
chunkcache.h \
json.h \
blockidentifier.h \
biomeidentifier.h \
dimensions.h \
definitionmanager.h \
zipreader.h \
settings.h \
chunkloader.h \
definitionupdater.h \
worldsave.h \
entity.h \
properties.h \
generatedstructure.h \
overlayitem.h \
village.h
SOURCES += mapview.cpp main.cpp minutor.cpp nbt.cpp \
labelledslider.cpp \
chunk.cpp \
chunkcache.cpp \
json.cpp \
blockidentifier.cpp \
biomeidentifier.cpp \
dimensions.cpp \
definitionmanager.cpp \
zipreader.cpp \
settings.cpp \
chunkloader.cpp \
definitionupdater.cpp \
worldsave.cpp \
entity.cpp \
properties.cpp \
generatedstructure.cpp \
village.cpp
RESOURCES = minutor.qrc
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