-
Notifications
You must be signed in to change notification settings - Fork 23
/
QtAgOpenGPS.pro
151 lines (138 loc) · 3.79 KB
/
QtAgOpenGPS.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#-------------------------------------------------
#
# Project created by QtCreator 2017-09-29T22:07:25
#
#-------------------------------------------------
QT += core gui opengl quick quickwidgets network
CONFIG += c++17
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
lessThan(QT_MAJOR_VERSION, 6):error("requires Qt 6.5 or newer")
equals(QT_MAJOR_VERSION,5):lessThan(QT_MINOR_VERSION,9):error("requires Qt 6.5 or newer")
TARGET = QtAgOpenGPS
TEMPLATE = app
RC_ICONS = images/AppIcon.ico
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as 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
#DEFINES += DEBUG_VEC
#DEFINES += TESTING
#DEFINES += TEST_NMEA
#DEFINES += LOCAL_QML
INCLUDEPATH += $$PWD/classes
SOURCES += main.cpp\
aogproperties.cpp \
aogproperty.cpp \
classes/cboundarylist.cpp \
classes/cfence.cpp \
classes/cguidance.cpp \
classes/cheadline.cpp \
classes/cpatches.cpp \
classes/cpgn.cpp \
classes/ctrack.cpp \
classes/cturn.cpp \
classes/cturnlines.cpp \
formgps.cpp \
classes/cabline.cpp \
classes/vec2.cpp \
classes/vec3.cpp \
classes/vec4.cpp \
classes/cflag.cpp \
classes/ccamera.cpp \
classes/cworldgrid.cpp \
classes/cmodulecomm.cpp \
classes/csection.cpp \
formgps_classcallbacks.cpp \
formgps_sections.cpp \
formgps_settings.cpp \
formgps_ui_boundary.cpp \
formgps_ui_field.cpp \
formgps_ui_tracks.cpp \
formgps_ui_vehicle.cpp \
formheadache.cpp \
formheadland.cpp \
qmlsectionbuttons.cpp \
qmlsettings.cpp \
qmlsettings_addkeys.cpp \
testlists.cpp \
classes/cnmea.cpp \
classes/cvehicle.cpp \
testnmea.cpp \
classes/ccontour.cpp \
formgps_opengl.cpp \
classes/cboundary.cpp \
formgps_ui.cpp \
aogsettings.cpp \
formgps_udpcomm.cpp \
formgps_position.cpp \
formgps_sim.cpp \
glutils.cpp \
aogrenderer.cpp \
classes/cyouturn.cpp \
classes/ctool.cpp \
classes/ctram.cpp \
classes/chead.cpp \
classes/cahrs.cpp \
classes/cfielddata.cpp \
classes/cabcurve.cpp \
classes/csim.cpp \
classes/crecordedpath.cpp \
classes/cdubins.cpp \
formgps_saveopen.cpp
HEADERS += formgps.h \
aogproperty.h \
classes/cabline.h \
classes/cboundarylist.h \
classes/cguidance.h \
classes/cheadline.h \
classes/cpatches.h \
classes/cpgn.h \
classes/ctrack.h \
classes/vec2.h \
classes/vec3.h \
classes/vec4.h \
classes/cflag.h \
classes/ccamera.h \
classes/glm.h \
classes/cworldgrid.h \
classes/cmodulecomm.h \
classes/csection.h \
classes/cnmea.h \
classes/cvehicle.h \
classes/ccontour.h \
classes/cboundary.h \
btnenum.h \
classes/vecfix2fix.h \
formheadache.h \
formheadland.h \
interfaceproperty.h \
properties.h \
qmlsectionbuttons.h \
qmlsettings.h \
qmlutil.h \
aogsettings.h \
common.h \
glutils.h \
aogrenderer.h \
classes/cyouturn.h \
classes/ctool.h \
classes/ctram.h \
classes/cahrs.h \
classes/cfielddata.h \
classes/cabcurve.h \
classes/csim.h \
classes/crecordedpath.h \
classes/cdubins.h
! contains(DEFINES,LOCAL_QML) {
RESOURCES += \
agopengps.qrc
}
DISTFILES += \
TODO.txt \
README.md \
LICENSE