-
Notifications
You must be signed in to change notification settings - Fork 1
/
G-Commander.pro
70 lines (61 loc) · 1.65 KB
/
G-Commander.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-25T23:16:28
#
#-------------------------------------------------
QT += core gui serialport
CONFIG += C++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = G-Commander
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
grblboard.cpp \
grblstatus.cpp \
grblinstruction.cpp \
gcodestreamer.cpp \
historymodel.cpp \
historyitem.cpp \
widgets/movementswidget.cpp \
widgets/monitorwidget.cpp \
widgets/controlwidget.cpp \
widgets/hardwarewidget.cpp \
widgets/gcodefilewidget.cpp \
widgets/coordinatedisplay.cpp \
widgets/visualizerwidget.cpp \
widgets/visualizerprimitive.cpp \
gcodeparser.cpp \
grblerrorrecorder.cpp \
grblconfigurationdialog.cpp \
grblconfiguration.cpp
HEADERS += mainwindow.h \
grblboard.h \
grblstatus.h \
grbldefinitions.h \
grblinstruction.h \
gcodestreamer.h \
historymodel.h \
historyitem.h \
widgets/movementswidget.h \
widgets/monitorwidget.h \
widgets/controlwidget.h \
widgets/hardwarewidget.h \
widgets/gcodefilewidget.h \
widgets/coordinatedisplay.h \
widgets/visualizerwidget.h \
widgets/visualizerprimitive.h \
gcodeparser.h \
grblerrorrecorder.h \
grblconfigurationdialog.h \
grblconfiguration.h
FORMS += \
widgets/movementswidget.ui \
widgets/monitorwidget.ui \
widgets/controlwidget.ui \
widgets/hardwarewidget.ui \
widgets/gcodefilewidget.ui \
widgets/coordinatedisplay.ui \
grblconfigurationdialog.ui
RESOURCES += \
icons.qrc \
shaders.qrc