-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.pro
57 lines (51 loc) · 1.34 KB
/
main.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
# define your application name here
TARGET = CurveApp
# add your source cpp files here
SOURCES += \
main.cpp \
mainWidget.cpp \
toolsWidget.cpp \
drawingWidgetItems.cpp \
drawingWidget.cpp \
animationWidgetItems.cpp \
animationWidget.cpp \
scene.cpp \
curve_2D_lagrange.cpp \
animatedPoint.cpp
# add your header files here
HEADERS += \
mainWidget.h \
toolsWidget.h \
drawingWidgetItems.h \
drawingWidget.h \
animationWidgetItems.h \
animationWidget.h \
scene.h \
curve1D.h \
curve1DHermite.h \
curve1DRessortHermite.h \
curve1DRebondHermite.h \
curve2DBsplines.h\
curve2D.h \
curve1DLinear.h \
curve2DLinear.h \
Curve1DLinearRessort.h \
Curve1DLinearRebond.h \
curve2DLinearclosed.h \
curve1DBezier.h \
curve2DBezier.h \
Curve2DBezierClosed.h \
curve_2D_lagrange.h \
curve1DLagrange.h \
curve2DBsplines.h \
Curve2Dhermite.h\
curve1DHermiteChange.h \
curve1DHermite_random.h \
curve2DBezierSin.h \
curve2DBezierWeird.h \
curve2DBsplinesChordal.h \
animatedPoint.h
TEMPLATE = app
INCLUDEPATH += eigen
QMAKE_CXXFLAGS += -std=c++11 -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-unused-variable -Wno-unused-but-set-variable -Wno-misleading-indentation -Wno-deprecated-declarations
QT += core gui widgets