forked from kenygia/MooseEdit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMooseEdit.pro
148 lines (138 loc) · 3.21 KB
/
MooseEdit.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
145
146
147
148
#-------------------------------------------------
#
# Project created by QtCreator 2014-07-12T19:52:57
#
#-------------------------------------------------
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = MooseEdit
TEMPLATE = app
INCLUDEPATH += C:\boost\boost_1_55_0
INCLUDEPATH += C:\glew-1.11.0\include\
INCLUDEPATH += C:\glm
LIBS += "-LC:\boost\boost_1_55_0\stage\lib"
LIBS += "-LC:\boost\stage\lib" -lboost_filesystem-mgw48-mt-1_55
LIBS += "-LC:\boost\stage\lib" -lboost_system-mgw48-mt-1_55
LIBS += "-LC:\Users\Jason\MooseEdit\granny\lib\win32"
LIBS += "-lgranny2"
win32:RC_ICONS += cogMoose.ico
SOURCES += main.cpp\
mainwindow.cpp \
LsbReader.cpp \
charactertab.cpp \
finddialog.cpp \
PakReader.cpp \
tinyxml/tinystr.cpp \
tinyxml/tinyxml.cpp \
tinyxml/tinyxmlerror.cpp \
tinyxml/tinyxmlparser.cpp \
LsbWriter.cpp \
TextureAtlas.cpp \
GameCharacter.cpp \
CharacterGroup.cpp \
GameItem.cpp \
ItemGroup.cpp \
InventoryHandler.cpp \
ItemLabel.cpp \
TooltipFrame.cpp \
GenStatsReader.cpp \
ItemEditFrame.cpp \
StatsView.cpp \
ItemGeneral.cpp \
RelativePositionLayout.cpp \
CheckboxListItem.cpp \
AbilityGroupItem.cpp \
ExpandableGroupBox.cpp \
TraitWidget.cpp \
SkillEditFrame.cpp \
EquipmentHandler.cpp \
GamePakData.cpp \
ItemTemplateWidget.cpp \
EditorSettings.cpp \
CharacterLoader.cpp \
AppearanceEditorFrame.cpp \
zgranny.cpp \
GlContextWidget.cpp \
nv_dds.cpp \
LsxReader.cpp \
LsbObject.cpp \
LsxWriter.cpp \
GlShader.cpp \
GlShaderProgram.cpp \
glew.c \
PakCompressor.cpp \
lz4.cpp \
PakWriter.cpp \
md5.cpp \
SanityHash.cpp \
lz4hc.cpp \
SettingsDialog.cpp \
AddNodeDialog.cpp
HEADERS += mainwindow.h \
LsbReader.h \
charactertab.h \
finddialog.h \
PakReader.h \
tinyxml/tinystr.h \
tinyxml/tinyxml.h \
LsbWriter.h \
LsbObject.h \
TextureAtlas.h \
GameCharacter.h \
CharacterGroup.h \
GameItem.h \
ItemGroup.h \
InventoryHandler.h \
ItemLabel.h \
TooltipFrame.h \
GenStatsReader.h \
ItemEditFrame.h \
StatsView.h \
ItemGeneral.h \
RelativePositionLayout.h \
CheckboxListItem.h \
AbilityGroupItem.h \
ExpandableGroupBox.h \
TraitWidget.h \
SkillEditFrame.h \
EquipmentHandler.h \
GamePakData.h \
ItemTemplateWidget.h \
EditorSettings.h \
CharacterLoader.h \
AppearanceEditorFrame.h \
granny/granny.h \
zgranny.h \
GlContextWidget.h \
DDSLoader.h \
dds.h \
nv_dds.h \
LsxReader.h \
LsxWriter.h \
GlShader.h \
GlShaderProgram.h \
PakCompressor.h \
lz4.h \
PakWriter.h \
PakInfo.h \
SanityHash.h \
md5.h \
lz4hc.h \
SettingsDialog.h \
AddNodeDialog.h
FORMS += mainwindow.ui \
charactertab.ui \
finddialog.ui \
TooltipFrame.ui \
ItemEditFrame.ui \
StatsView.ui \
ItemGeneral.ui \
AbilityGroupItem.ui \
TraitWidget.ui \
SkillEditFrame.ui \
ItemTemplateWidget.ui \
AppearanceEditorFrame.ui \
SettingsDialog.ui \
AddNodeDialog.ui
RESOURCES += \
resources.qrc