-
Notifications
You must be signed in to change notification settings - Fork 2
/
CirclePackings.pro
99 lines (94 loc) · 2.22 KB
/
CirclePackings.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
unix:QMAKE_CXXFLAGS_RELEASE -= -O
unix:QMAKE_CXXFLAGS_RELEASE -= -O1
unix:QMAKE_CXXFLAGS_RELEASE -= -O2
unix:QMAKE_CXXFLAGS_RELEASE *= -O3
QT += widgets
HEADERS += \
point.hpp \
curve.hpp \
mobius.hpp \
circle.hpp \
vertex.hpp \
graph.hpp \
empty.hpp \
graph_completer.hpp \
graph_cyclic_sorter.hpp \
graph_orienter.hpp \
graph_tiler.hpp \
algo.hpp \
canvas.hpp \
window.hpp \
input_menu.hpp \
output_menu.hpp \
graph_colorer.hpp \
basic_types.hpp \
maths_contents.hpp \
tests.hpp \
positions.hpp \
top_algo.hpp \
canvas_delegate.hpp \
canvas_delegate_draw_curve.hpp \
canvas_delegate_draw_graph.hpp \
canvas_delegate_show_cp.hpp \
canvas_delegate_tests.hpp \
canvas_delegate_show_live.hpp \
graph_triangulater.hpp \
triangle.hpp \
triangulation.hpp \
canvas_delegate_riemann.hpp \
riemann_positions.hpp \
triangulation_search_tree.hpp \
positions_mixer.hpp \
top_menu.hpp \
configuration.hpp \
graph_sampler.hpp \
affine_transform.hpp \
circle_packings_application.hpp \
help_browser.hpp
SOURCES += \
point.cpp \
main.cpp \
curve.cpp \
mobius.cpp \
circle.cpp \
vertex.cpp \
graph.cpp \
empty.cpp \
graph_completer.cpp \
graph_cyclic_sorter.cpp \
graph_orienter.cpp \
graph_tiler.cpp \
algo.cpp \
canvas.cpp \
window.cpp \
input_menu.cpp \
output_menu.cpp \
graph_colorer.cpp \
canvas_delegate.cpp \
canvas_delegate_draw_graph.cpp \
canvas_delegate_draw_curve.cpp \
canvas_delegate_show_cp.cpp \
maths_contents.cpp \
tests.cpp \
canvas_delegate_tests.cpp \
positions.cpp \
top_algo.cpp \
canvas_delegate_show_live.cpp \
graph_triangulater.cpp \
triangle.cpp \
triangulation.cpp \
canvas_delegate_riemann.cpp \
riemann_positions.cpp \
triangulation_search_tree.cpp \
positions_mixer.cpp \
top_menu.cpp \
basic_types.cpp \
configuration.cpp \
graph_sampler.cpp \
affine_transform.cpp \
circle_packings_application.cpp \
help_browser.cpp
RESOURCES += \
resources.qrc
mac:ICON = images/icon-osx.icns
win32:RC_FILE = CirclePackings.rc