forked from ejmahler/SplineLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSplineDemo.pro
50 lines (44 loc) · 1.66 KB
/
SplineDemo.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
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SplineDemo
TEMPLATE = app
CONFIG += c++11
SOURCES += \
demo/settingswidget.cpp \
demo/settings.cpp \
demo/mainwindow.cpp \
demo/main.cpp \
demo/graphicscontroller.cpp
HEADERS += \
demo/settingswidget.h \
demo/settings.h \
demo/mainwindow.h \
demo/graphicscontroller.h \
spline_library/vector3d.h \
spline_library/splineinverter.h \
spline_library/spline.h \
spline_library/basis/cubic_b_spline.h \
spline_library/basis/looping_cubic_b_spline.h \
spline_library/natural/looping_natural_spline.h \
spline_library/natural/natural_spline.h \
spline_library/hermite/cubic/cubic_hermite_spline.h \
spline_library/hermite/cubic/looping_cubic_hermite_spline.h \
spline_library/hermite/quintic/looping_quintic_hermite_spline.h \
spline_library/hermite/quintic/quintic_hermite_spline.h \
spline_library/splinelengthcalculator.h \
spline_library/utils/linearalgebra.h \
spline_library/utils/nanoflann.hpp \
spline_library/utils/splinesample_adaptor.h \
spline_library/linear/linear_spline.h \
spline_library/linear/looping_linear_spline.h \
spline_library/utils/optimization.h \
spline_library/utils/utils.h \
spline_library/utils/spline_setup.h \
spline_library/natural/natural_spline_kernel.h \
spline_library/linear/linear_spline_kernel.h \
spline_library/basis/cubic_b_spline_kernel.h \
spline_library/hermite/cubic/cubic_hermite_spline_kernel.h \
spline_library/hermite/quintic/quintic_hermite_spline_kernel.h
FORMS += \
demo/settingswidget.ui \
demo/mainwindow.ui