-
Notifications
You must be signed in to change notification settings - Fork 7
/
GCodeViz.pro
executable file
·85 lines (75 loc) · 2.09 KB
/
GCodeViz.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-30T15:37:03
#
#-------------------------------------------------
QT += core gui widgets concurrent
CONFIG += c++11
TARGET = GCodeViz
TEMPLATE = app
OBJECTS_DIR = ./obj
MOC_DIR = ./moc
RCC_DIR = ./rcc
INCLUDEPATH += include
win32 {
LIBS += Opengl32.lib
!contains(QMAKE_TARGET.arch, x86_64) {
message("x86 build")
} else {
message("x86_64 build")
}
}
SOURCES += main.cpp\
mainwindow.cpp \
interpreter/gcodecommand.cpp \
interpreter/gcodeinterpreter.cpp \
glaxis.cpp \
glaxisarrow.cpp \
gldrawable.cpp \
glmotiontrace.cpp \
motiontraceview.cpp \
interpreter/gcodevisualizer.cpp \
motioncommand/attachcommand.cpp \
motioncommand/begincommand.cpp \
motioncommand/circlecommand.cpp \
motioncommand/commonmotionparameter.cpp \
motioncommand/detachcommand.cpp \
motioncommand/endcommand.cpp \
motioncommand/jogcommand.cpp \
motioncommand/kmcommand.cpp \
motioncommand/movecommand.cpp \
motioncommand/movemotionparameter.cpp \
glplanemesh.cpp \
memory/memorymonitorobject.cpp \
tracedrawingrangedialog.cpp \
openhistorymanager.cpp
HEADERS += mainwindow.h \
interpreter/gcodecommand.h \
interpreter/gcodeinterpreter.h \
glaxis.h \
glaxisarrow.h \
gldrawable.h \
glmotiontrace.h \
motiontraceview.h \
interpreter/gcodevisualizer.h \
motioncommand/attachcommand.h \
motioncommand/begincommand.h \
motioncommand/circlecommand.h \
motioncommand/commonmotionparameter.h \
motioncommand/detachcommand.h \
motioncommand/endcommand.h \
motioncommand/jogcommand.h \
motioncommand/kmcommand.h \
motioncommand/motioncommand.h \
motioncommand/movecommand.h \
motioncommand/movemotionparameter.h \
motioncommand/vectorutils.h \
glplanemesh.h \
memory/memorymonitorobject.h \
tracedrawingrangedialog.h \
openhistorymanager.h
FORMS += mainwindow.ui \
tracedrawingrangedialog.ui
RESOURCES += \
resources.qrc
DISTFILES +=