-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnfolding.pro
180 lines (163 loc) · 5.09 KB
/
Unfolding.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#-------------------------------------------------
#
# Project created by QtCreator 2014-09-04T16:35:12
#
#-------------------------------------------------
QT += core gui opengl svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Unfolding
TEMPLATE = app
RC_FILE = icons/_Unfolding.rc
CONFIG += c++11
CONFIG(release): DEFINES += NDEBUG
#CONFIG += console
QMAKE_CXXFLAGS += -std=c++11
Release:DESTDIR = bin/Release
Debug:DESTDIR = bin/Debug
OBJECTS_DIR = $${DESTDIR}/.obj
MOC_DIR = $${DESTDIR}/.moc
RCC_DIR = $${DESTDIR}/.rcc
UI_DIR = $${DESTDIR}/.ui
INCLUDEPATH += extras/colormap_editor src
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/hds_common.cpp \
src/hds_vertex.cpp \
src/hds_halfedge.cpp \
src/hds_face.cpp \
src/hds_mesh.cpp \
src/meshmanager.cpp \
src/meshloader.cpp \
src/stringutils.cpp \
src/meshcutter.cpp \
src/meshunfolder.cpp \
extras/colormap_editor/colormapeditor.cpp \
src/colormap.cpp \
src/unionfind.cpp \
src/meshsmoother.cpp \
src/criticalpointspanel.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/BaseModel.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ExactMethodForDGP.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ICHWithFurtherPriorityQueue.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ImprovedCHWithEdgeValve.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/Point3D.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/PreviousCH.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/RichModel.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/stdafx.cpp \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/svg_precompute.cpp \
src/morsesmalecomplex.cpp \
src/GeodesicComputer.cpp \
src/MeshExtender.cpp \
src/discretegeocomputer.cpp \
src/cutlocuspanel.cpp \
src/hds_bridger.cpp \
src/meshhollower.cpp \
src/BBox.cpp \
src/ConnectorPanel.cpp \
src/MeshDFormer.cpp \
src/MeshConnector.cpp \
src/meshrimface.cpp \
src/OperationStack.cpp \
src/rimfacepanel.cpp \
src/Camera.cpp \
src/MeshViewer.cpp \
src/ViewerGrid.cpp \
src/MeshWeaver.cpp \
src/ViewerRuler.cpp \
src/WeavePanel.cpp \
src/QuadEdgePanel.cpp \
src/BridgerPanel.cpp \
src/GESPanel.cpp \
forms/NeoWeavePanel.cpp \
forms/OrigamiPanel.cpp
HEADERS += src/mainwindow.h \
src/UnfoldingAppException.h \
src/hds_common.h \
src/hds_vertex.h \
src/hds_halfedge.h \
src/hds_face.h \
src/hds_mesh.h \
src/common.h \
src/glutils.hpp \
src/meshmanager.h \
src/meshloader.h \
src/stringutils.h \
src/mathutils.hpp \
src/meshcutter.h \
src/utils.hpp \
src/meshunfolder.h \
extras/colormap_editor/colormapeditor.h \
src/colormap.h \
src/unionfind.h \
src/meshsmoother.h \
src/criticalpointspanel.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/BaseModel.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ExactMethodForDGP.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ICHWithFurtherPriorityQueue.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/ImprovedCHWithEdgeValve.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/Point3D.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/PreviousCH.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/RichModel.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/stdafx.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/svg_precompute.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/targetver.h \
extras/SVG_LC_code/SVG_precompute/LocalGeodesics/wxnTime.h \
src/morsesmalecomplex.h \
src/GeodesicComputer.h \
src/MeshExtender.h \
src/discretegeocomputer.h \
src/cutlocuspanel.h \
src/hds_bridger.h \
src/meshhollower.h \
src/BBox.h \
src/ConnectorPanel.h \
src/MeshDFormer.h \
src/MeshConnector.h \
src/meshrimface.h \
src/OperationStack.h \
src/rimfacepanel.h \
src/MeshViewer.h \
src/Camera.h \
src/CameraLegacy.h \
src/ViewerGrid.h \
src/MeshWeaver.h \
src/ViewerRuler.h \
src/WeavePanel.h \
src/QuadEdgePanel.h \
src/BridgerPanel.h \
src/GESPanel.h \
forms/NeoWeavePanel.h \
forms/OrigamiPanel.h
FORMS += extras/colormap_editor/colormapeditor.ui \
forms/mainwindow.ui \
forms/criticalpointspanel.ui \
forms/cutlocuspanel.ui \
forms/ConnectorPanel.ui \
forms/rimfacepanel.ui \
forms/WeavePanel.ui \
forms/QuadEdgePanel.ui \
forms/BridgerPanel.ui \
forms/GESPanel.ui \
forms/NeoWeavePanel.ui \
forms/OrigamiPanel.ui
RESOURCES += \
resources.qrc
#OTHER_FILES +=
#LIBS += -glut32
#LIBS += -Lc:\glut
DISTFILES += \
shaders/edge_fs.glsl \
shaders/edge_vs.glsl \
shaders/face_fs.glsl \
shaders/face_gs.glsl \
shaders/face_vs.glsl \
shaders/vtx_fs.glsl \
shaders/vtx_vs.glsl \
shaders/uid_fs.glsl \
shaders/uid_vs.glsl
#To make it work, add make install in Build Step
debug {
install_shader.path = $${DESTDIR}/shaders
install_shader.files += shaders/*
INSTALLS += install_shader
}