-
Notifications
You must be signed in to change notification settings - Fork 15
/
ViconMAVLink.pro
84 lines (63 loc) · 3.04 KB
/
ViconMAVLink.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-11-27T15:28:14
#
#-------------------------------------------------
QT += core gui widgets network concurrent
TARGET = ViconMAVLink
TEMPLATE = app
CONFIG += c++14
# 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
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT
# 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\
Drone.cpp \
KalmanFilter.cpp \
Sender.cpp \
SenderWindow.cpp \
Station.cpp \
StationController.cpp \
StationWindow.cpp \
SenderController.cpp
HEADERS += \
lib/MAVLink2/common/common.h \
lib/MAVLink2/common/mavlink.h \
Drone.h \
KalmanFilter.h \
Sender.h \
SenderWindow.h \
Station.h \
StationController.h \
StationWindow.h \
SenderController.h
FORMS += \
StationWindow.ui \
SenderWindow.ui
unix:!macx: LIBS += -L$$PWD/../../../../usr/local/lib/Vicon/ -lViconDataStreamSDK_CPP
unix:!macx: LIBS += -L$$PWD/../../../../usr/local/lib/Vicon/ -lboost_system
unix:!macx: LIBS += -L$$PWD/../../../../usr/local/lib/Vicon/ -lboost_thread
INCLUDEPATH += $$PWD/../../../../usr/local/include/Vicon
DEPENDPATH += $$PWD/../../../../usr/local/include/Vicon
unix:!macx: LIBS += -L$$PWD/../../../../usr/local/lib/GeographicLib/ -lGeographic
INCLUDEPATH += $$PWD/../../../../usr/local/include
DEPENDPATH += $$PWD/../../../../usr/local/include
INCLUDEPATH += $$PWD/../../../../../include/
DEPENDPATH += $$PWD/../../../../../include/
DEFINES += GEOGRAPHICLIB_SHARED_LIB=0
win32: LIBS += -L$$PWD/../../../../../pkg-vc12-x64/GeographicLib-1.49/lib/ -lGeographic
INCLUDEPATH += $$PWD/../../../../../pkg-vc12-x64/GeographicLib-1.49/include
DEPENDPATH += $$PWD/../../../../../pkg-vc12-x64/GeographicLib-1.49/include
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../../../../../pkg-vc12-x64/GeographicLib-1.49/lib/Geographic.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../../../../../pkg-vc12-x64/GeographicLib-1.49/lib/libGeographic.a
win32: LIBS += -L$$PWD/'../../../../../Program Files/Vicon/DataStream SDK/Win64/CPP/' -lViconDataStreamSDK_CPP
INCLUDEPATH += $$PWD/'../../../../../Program Files/Vicon/DataStream SDK/Win64/CPP'
DEPENDPATH += $$PWD/'../../../../../Program Files/Vicon/DataStream SDK/Win64/CPP'
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/'../../../../../Program Files/Vicon/DataStream SDK/Win64/CPP/ViconDataStreamSDK_CPP.lib'
else:win32-g++: PRE_TARGETDEPS += $$PWD/'../../../../../Program Files/Vicon/DataStream SDK/Win64/CPP/libViconDataStreamSDK_CPP.a'