forked from JamesMcCrae/flatfab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlatFab.pro
58 lines (48 loc) · 1.38 KB
/
FlatFab.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-11-10T11:13:21
#
#-------------------------------------------------
QT += core gui opengl widgets
TARGET = FlatFab
TEMPLATE = app
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/glwidget.cpp \
src/eigen.cpp \
src/glutils.cpp \
src/planarsection.cpp \
src/beziercurve.cpp \
src/pivotcamera.cpp \
src/bezierfit.cpp \
src/contourgraph.cpp \
src/physics.cpp \
src/physics_matrix3d.cpp \
src/physics_vector3d.cpp \
src/tree.cpp \
src/transformwidget.cpp \
src/triangulate2.cpp
HEADERS += include/mainwindow.h \
include/glwidget.h \
include/eigen.h \
include/glutils.h \
include/planarsection.h \
include/beziercurve.h \
include/pivotcamera.h \
include/bezierfit.h \
include/contourgraph.h \
include/physics.h \
include/physics_matrix3d.h \
include/physics_vector3d.h \
include/tree.h \
include/transformwidget.h \
include/triangulate2.h
INCLUDEPATH += include/
#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
unix:!macx:INCLUDEPATH += /usr/include/eigen3
#windows specific build settings
win32:RC_FILE = flatfab.rc #program icon
RESOURCES += \
resources.qrc