-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSixR20.pro
More file actions
137 lines (124 loc) · 5.06 KB
/
SixR20.pro
File metadata and controls
137 lines (124 loc) · 5.06 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#QT += qml quick core gui printsupport
#greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QT += quick
QT += xml
QT+= widgets
QT += charts
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
CONFIG += c++11
#CONFIG += no_keywords
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += main.cpp \
Model/ViewModel/breakviewmodel.cpp \
Model/ViewModel/frame.cpp \
Model/ViewModel/mainviewmodel.cpp \
Model/ViewModel/jogviewmodel.cpp \
Model/ViewModel/positionviewmodel.cpp \
Model/ViewModel/teachviewmodel.cpp \
Model/ViewModel/rightviewmodel.cpp \
Model/ViewModel/bottomviewmodel.cpp \
Model/Controller/controller.cpp \
Model/Robot/robot.cpp \
Model/Controller/beckhoff.cpp \
Model/Interpreter/SixRGrammerBaseListener.cpp \
Model/Interpreter/SixRGrammerLexer.cpp \
Model/Interpreter/SixRGrammerListener.cpp \
Model/Interpreter/SixRGrammerParser.cpp \
Model/ViewModel/antlrmain.cpp \
Model/Interpreter/msixrlistener.cpp \
Model/Interpreter/variable.cpp \
Model/ViewModel/runviewmodel.cpp \
Model/ViewModel/dryrunviewmodel.cpp \
Model/ViewModel/teachpointviewmodel.cpp \
Model/ViewModel/iomonitoringviewmodel.cpp \
Model/ViewModel/velocityaccelerationviewmodel.cpp \
Model/ViewModel/scoordinatesviewmodel.cpp \
Model/ViewModel/iohandlingviewmodel.cpp \
Model/ViewModel/servoparametersviewmodel.cpp \
Model/ViewModel/scopeviewmodel.cpp \
Model/Interpreter/parsetreelinewalker.cpp \
Model/ViewModel/begininterpreter.cpp \
Model/ViewModel/points.cpp \
Model/ViewModel/alarm.cpp \
Model/ViewModel/qcustomplot.cpp \
Model/ViewModel/customplotitem.cpp \
Model/Robot/TrajectoryPoint.cpp \
Model/Robot/slerp.cpp \
Model/Interpreter/subroutine.cpp \
Model/Interpreter/interruptM.cpp \
Model/Interpreter/antlrerrorlistenerm.cpp \
Model/ViewModel/linenumbers.cpp \
Model/ViewModel/codeeditorbackend.cpp \
Model/ViewModel/comboboxmodel.cpp \
Model/ViewModel/fileio.cpp \
Model/Controller/readinfo.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
Model/ViewModel/breakviewmodel.h \
Model/ViewModel/frame.h \
Model/ViewModel/mainviewmodel.h \
Model/ViewModel/jogviewmodel.h \
Model/ViewModel/positionviewmodel.h \
Model/ViewModel/teachviewmodel.h \
Model/ViewModel/rightviewmodel.h \
Model/ViewModel/bottomviewmodel.h \
Model/Controller/controller.h \
Model/Robot/robot.h \
Model/Controller/beckhoff.h\
Model/Interpreter/SixRGrammerBaseListener.h \
Model/Interpreter/SixRGrammerLexer.h \
Model/Interpreter/SixRGrammerListener.h \
Model/Interpreter/SixRGrammerParser.h \
Model/ViewModel/antlrmain.h \
Model/Interpreter/msixrlistener.h \
Model/Interpreter/variable.h \
Model/ViewModel/runviewmodel.h \
Model/ViewModel/dryrunviewmodel.h \
Model/ViewModel/teachpointviewmodel.h \
Model/ViewModel/iomonitoringviewmodel.h \
Model/ViewModel/velocityaccelerationviewmodel.h \
Model/ViewModel/scoordinatesviewmodel.h \
Model/ViewModel/iohandlingviewmodel.h \
Model/ViewModel/servoparametersviewmodel.h \
Model/ViewModel/scopeviewmodel.h \
Model/Interpreter/parsetreelinewalker.h \
Model/ViewModel/begininterpreter.h \
Model/ViewModel/points.h \
Model/ViewModel/alarm.h \
Model/ViewModel/qcustomplot.h \
Model/ViewModel/customplotitem.h \
Model/Robot/TrajectoryPoint.h \
Model/Robot/slerp.h \
Model/Interpreter/subroutine.h \
Model/Interpreter/interruptM.h \
Model/Interpreter/antlrerrorlistenerm.h \
Model/ViewModel/linenumbers.h \
Model/ViewModel/codeeditorbackend.h \
Model/ViewModel/comboboxmodel.h \
Model/ViewModel/fileio.h \
Model/Controller/readinfo.h
LIBS+=$$PWD/AdsLib-Linux.a\
$$PWD/Model/Interpreter/libantlr4-runtime.a
DISTFILES += \
$$PWD/AdsLib-Linux.a \
$$PWD/Model/Interpreter/libantlr4-runtime.a
INCLUDEPATH += Model/Interpreter/include/antlr4-runtime\
/Model/Interpreter/include/antlr4-runtime/tree\
/Model/Interpreter/include/antlr4-runtime/CommonTokenStream.h\
/Model/Interpreter/include/antlr4-runtime/ANTLRInputStream.h