-
Notifications
You must be signed in to change notification settings - Fork 1
/
breeze_flight_control_station.pro
61 lines (49 loc) · 1.76 KB
/
breeze_flight_control_station.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-08T22:25:35
#
#-------------------------------------------------
QT += core gui svg multimedia multimediawidgets serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
TARGET = breeze_flight_control_station
TEMPLATE = app
INCLUDEPATH += \
/usr/include/boost
INCLUDEPATH += \
include \
include/fcs_instrucment \
include/fcs_instrucment_widget \
lib/communication_link/include \
lib/communication_serial/include \
lib/qcustomplot
LIBS += \
/usr/lib/x86_64-linux-gnu/libboost_system.so \
/usr/lib/x86_64-linux-gnu/libboost_thread.so
HEADERS += \
include/flight_control_station.h \
include/fcs_instrucment/fcs_instrucment_pfd.h \
include/fcs_instrucment_widget/fcs_instrucment_widget_pfd.h \
include/fcs_instrucment_layout.h \
include/fcs_custom_tab_style.h \
include/fcs_custom_tab_widget.h
HEADERS += \
lib/qcustomplot/qcustomplot.h
SOURCES += \
src/flight_control_station.cpp \
src/main.cpp \
src/fcs_instrucment/fcs_instrucment_pfd.cpp \
src/fcs_instrucment_widget/fcs_instrucment_widget_pfd.cpp \
src/fcs_instrucment_layout.cpp \
src/fcs_custom_tab_widget.cpp
SOURCES += \
# lib/communication_serial/src/communication_port.cpp \
# lib/communication_serial/src/communication_serial_port.cpp \
# lib/communication_serial/src/communication_serial_interface.cpp \
# lib/communication_link/src/communication_link.cpp \
# lib/communication_link/src/communication_data_type.cpp
lib/qcustomplot/qcustomplot.cpp
FORMS += \
form/flight_control_station.ui \
form/fcs_instrucment_widget/fcs_instrucment_widget_pfd.ui
RESOURCES += \
breeze_flight_control_station.qrc