forked from PeterS242/YARRH
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarrh.pro
137 lines (85 loc) · 1.75 KB
/
yarrh.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-06-26T12:00:18
#
#-------------------------------------------------
QT += core gui opengl
TARGET = yarrh
TEMPLATE = app
INCLUDEPATH += "./"
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
gcodeobject.cpp \
layer.cpp \
graphwidget.cpp \
headcontrol.cpp \
headcontrolline.cpp \
printer.cpp \
aboutwindow.cpp \
layer2d.cpp \
calibratedialog.cpp \
optiondialog.cpp \
slicedialog.cpp \
stlview.cpp \
stlobject.cpp \
face.cpp \
halfedge.cpp \
vertex.cpp \
slice.cpp \
material.cpp \
clipper/clipper.cpp \
macroswindow.cpp \
macrobutton.cpp \
sdcardwindow.cpp
HEADERS += mainwindow.h \
glwidget.h \
gcodeobject.h \
layer.h \
graphwidget.h \
headcontrol.h \
headcontrolline.h \
printer.h \
aboutwindow.h \
layer2d.h \
calibratedialog.h \
optiondialog.h \
slicedialog.h \
stlview.h \
stlobject.h \
face.h \
halfedge.h \
vertex.h \
slice.h \
material.h \
clipper/clipper.hpp \
macroswindow.h \
macrobutton.h \
sdcardwindow.h
FORMS += mainwindow.ui \
aboutwindow.ui \
calibratedialog.ui \
optiondialog.ui \
slicedialog.ui \
macroswindow.ui \
sdcardwindow.ui
RESOURCES += \
resource.qrc
TRANSLATIONS = yarrh_pl.ts \
yarrh_en.ts \
yarrh_de.ts \
yarrh_bg.ts \
yarrh_fi.ts
include(qextserialport/qextserialport.pri)
win32 {
#LIBS+=-lglut32
RC_FILE = icon.rc
}
macx {
ICON = icon.icns
}
LIBS += -lGLU
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build
RCC_DIR = build