-
Notifications
You must be signed in to change notification settings - Fork 0
/
u_winlepp.pro
62 lines (62 loc) · 2.38 KB
/
u_winlepp.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
TARGET = app
CONFIG += thread
TARGET = winlepp
QT += core \
gui
HEADERS += core/refinement/selectioncriterions/subsetidcriterion.h \
core/refinement/selectioncriterions/randomcriterion.h \
core/refinement/refinementalgorithms/leppbisectionthread.h \
core/util/vertexpool.h \
core/util/pool.h \
core/util/trianglepool.h \
core/refinement/refinementalgorithms/leppbisectiontemplate.h \
ui/windows/concurrencyoptionsdialog.h \
core/refinement/refinementalgorithms/concurrentleppbisection.h \
ui/windows/angleselectiondialog.h \
ui/windows/mainwindow.h \
ui/windows/refinementdialog.h \
core/refinement/refinementalgorithms/leppbisection.h \
core/refinement/refinementalgorithms/refinementalgorithm.h \
core/refinement/selectioncriterions/anglecriterion.h \
core/refinement/selectioncriterions/selectallcriterion.h \
core/refinement/selectioncriterions/selectioncriterion.h \
core/geom/angle.h \
core/geom/edge.h \
core/geom/mesh.h \
core/geom/point2f.h \
core/geom/triangle.h \
core/geom/vertex.h \
core/util/m2dmeshloader.h \
core/util/m2dmeshsaver.h \
core/util/meshloader.h \
core/util/meshsaver.h \
ui/adaptertriangleitem.h \
ui/meshscene.h
SOURCES += core/refinement/selectioncriterions/randomcriterion.cpp \
core/refinement/refinementalgorithms/leppbisectionthread.cpp \
core/refinement/refinementalgorithms/leppbisectiontemplate.cpp \
ui/windows/concurrencyoptionsdialog.cpp \
core/refinement/refinementalgorithms/concurrentleppbisection.cpp \
ui/windows/angleselectiondialog.cpp \
ui/windows/mainwindow.cpp \
ui/windows/refinementdialog.cpp \
core/refinement/refinementalgorithms/leppbisection.cpp \
core/refinement/refinementalgorithms/refinementalgorithm.cpp \
core/refinement/selectioncriterions/anglecriterion.cpp \
core/refinement/selectioncriterions/subsetidcriterion.cpp \
core/geom/angle.cpp \
core/geom/edge.cpp \
core/geom/mesh.cpp \
core/geom/point2f.cpp \
core/geom/triangle.cpp \
core/geom/vertex.cpp \
core/util/m2dmeshloader.cpp \
core/util/m2dmeshsaver.cpp \
ui/adaptertriangleitem.cpp \
ui/meshscene.cpp \
main.cpp
FORMS += ui/windows/concurrencyoptionsdialog.ui \
ui/windows/angleselectiondialog.ui \
ui/windows/mainwindow.ui \
ui/windows/refinementdialog.ui
RESOURCES += resources/resources.qrc