-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSvg2Gcode.pro
More file actions
44 lines (36 loc) · 821 Bytes
/
Svg2Gcode.pro
File metadata and controls
44 lines (36 loc) · 821 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2013-09-15T14:10:24
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Svg2Gcode
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
svgitem.cpp \
gcodeviewer.cpp \
line.cpp \
circle.cpp \
qbezier.cpp \
polygon.cpp \
transform.cpp \
arc.cpp \
basicpolygon.cpp \
abstracttransform.cpp
HEADERS += mainwindow.h \
svgitem.h \
gcodeviewer.h \
line.h \
circle.h \
qbezier.h \
polygon.h \
transform.h \
arc.h \
basicpolygon.h \
abstracttransform.h
FORMS += mainwindow.ui \
gcodeviewer.ui
RESOURCES += \
res.qrc