forked from hydronautics-team/PoolsideGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoolsideGUI.pro
More file actions
126 lines (113 loc) · 3.88 KB
/
PoolsideGUI.pro
File metadata and controls
126 lines (113 loc) · 3.88 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
QT += core gui widgets testlib network
QT += serialport
greaterThan(QT_MAJOR_VERSION, 6): QT += statemachine
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
unix {
DEFINES += OS=\\\"unix\\\"
message("Unix build")
LIBS += -L/usr/lib/x86_64-linux-gnu/SFML/lib/ -lsfml-window
LIBS += -L/usr/local/lib -lhidapi-libusb
}
win32 {
DEFINES += OS=\\\"win32\\\"
message("Windows build")
LIBS += -L$$PWD/sfml/SFML-build/lib/ -lsfml-window -lsfml-system
LIBS += -lhid -lsetupapi -mwindows
}
INCLUDEPATH += $$PWD/sfml/SFML/include
DEPENDPATH += $$PWD/sfml/SFML/include
# The following define makes your compiler emit warnings if you use
# any Qt feature that has 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 it uses 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 += \
Drivers/controlbase.cpp \
Drivers/joystick.cpp \
Drivers/keyboard.cpp \
Drivers/mouse_3d.cpp \
Drivers/hid.c \
KX_Pult/configdata.cpp \
KX_Pult/kx_protocol.cpp \
KX_Pult/qkx_coeffs.cpp \
KX_Pult/qpiconfig.cpp \
PicFrame/picframe.cpp \
SettingsWindow/CommunicationSettings/communicationsettings.cpp \
SettingsWindow/CommunicationSettings/serial_settings.cpp \
SettingsWindow/CommunicationSettings/udp_settings.cpp \
SettingsWindow/ThrusterSettings/thrustersettings.cpp \
SettingsWindow/VehicleSettings/vehiclesettings.cpp \
UI_Tests/serverdata_test.cpp \
UV/icontroldata.cpp \
UV/ituningdata.cpp \
UV/iuserinterfacedata.cpp \
UV/uv_controlcontour.cpp \
UV/uv_thruster.cpp \
VehicleWizard/vehiclewizard.cpp \
UV/ibasicdata.cpp \
UV/iserverdata.cpp \
UV/uv_device.cpp \
UV/uv_state.cpp \
main.cpp \
mainwindow.cpp \
SettingsWindow/settingswindow.cpp \
rovmodewidget.cpp \
serial_client.cpp \
udp_client.cpp
HEADERS += \
Drivers/controlbase.h \
Drivers/joystick.h \
Drivers/keyboard.h \
Drivers/mouse_3d.h \
Drivers/hidapi.h \
KX_Pult/configdata.h \
KX_Pult/kx_protocol.h \
KX_Pult/qkx_coeffs.h \
KX_Pult/qpiconfig.h \
PicFrame/picframe.h \
SettingsWindow/CommunicationSettings/communicationsettings.h \
SettingsWindow/CommunicationSettings/serial_settings.h \
SettingsWindow/CommunicationSettings/udp_settings.h \
SettingsWindow/VehicleSettings/vehiclesettings.h \
UI_Tests/serverdata_test.h \
UV/ibasicdata.h \
UV/icontroldata.h \
UV/iserverdata.h \
UV/ituningdata.h \
UV/iuserinterfacedata.h \
UV/uv_controlcontour.h \
UV/uv_device.h \
UV/uv_state.h \
SettingsWindow/ThrusterSettings/thrustersettings.h \
UV/uv_thruster.h \
VehicleWizard/vehiclewizard.h \
mainwindow.h \
SettingsWindow/settingswindow.h \
rovmodewidget.h \
serial_client.h \
udp_client.h
FORMS += \
PicFrame/picframe.ui \
SettingsWindow/CommunicationSettings/communicationsettings.ui \
SettingsWindow/CommunicationSettings/serial_settings.ui \
SettingsWindow/CommunicationSettings/udp_settings.ui \
SettingsWindow/ThrusterSettings/thrustersettings.ui \
SettingsWindow/VehicleSettings/vehiclesettings.ui \
VehicleWizard/vehiclewizard.ui \
mainwindow.ui \
SettingsWindow/settingswindow.ui \
rovmodewidget.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
images.qrc \
vehicles.qrc
DISTFILES += \
KX_Pult/protocols.conf