forked from JamesMcCrae/flatfab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlanarDisc.pro
55 lines (46 loc) · 1.16 KB
/
PlanarDisc.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-11-10T11:13:21
#
#-------------------------------------------------
QT += core gui opengl widgets webkit network webkitwidgets
TARGET = FlatFab
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
eigen.cpp \
glutils.cpp \
planarsection.cpp \
beziercurve.cpp \
pivotcamera.cpp \
bezierfit.cpp \
contourgraph.cpp \
physics.cpp \
physics_matrix3d.cpp \
physics_vector3d.cpp \
tree.cpp \
transformwidget.cpp \
triangulate2.cpp
HEADERS += mainwindow.h \
glwidget.h \
eigen.h \
glutils.h \
planarsection.h \
beziercurve.h \
pivotcamera.h \
bezierfit.h \
contourgraph.h \
physics.h \
physics_matrix3d.h \
physics_vector3d.h \
tree.h \
transformwidget.h \
triangulate2.h
#linux specific build settings
unix:!macx:LIBS += -lGLU
unix:!macx:QMAKE_LFLAGS += '-Wl,-rpath,\'\$$ORIGIN/libs\'' #this sets the RPATH to "libs" local to the executable location
#windows specific build settings
win32:RC_FILE = flatfab.rc #program icon
RESOURCES += \
resources.qrc