-
Notifications
You must be signed in to change notification settings - Fork 1
/
RemoteAntennaRotator.pro
67 lines (57 loc) · 1.35 KB
/
RemoteAntennaRotator.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-10-07T14:21:20
#
#-------------------------------------------------
QT += core gui network widgets
greaterThan(QT_MAJOR_VERSION, 6): QT += widgets
TARGET = RemoteAntennaRotator
TEMPLATE = app
CONFIG(debug, debug|release) {
BUILD_TYPE = debug
OUT_DIR = distr/debug
}
CONFIG(release, debug|release) {
BUILD_TYPE = release
OUT_DIR = distr/release
}
DESTDIR = $${OUT_DIR}
SOURCES += \
src/DataExchange.cpp \
src/Encoder.cpp \
src/MainWindow.cpp \
src/Servo.cpp \
src/ServoSettingsView.cpp \
src/TcpSettingsView.cpp \
src/main.cpp \
src/Log/Log.cpp \
src/MVP/Model.cpp \
src/MVP/Presentor.cpp \
src/MVP/AzElView.cpp \
src/ProtocolUtil.cpp \
src/Settings.cpp \
src/MessageBus.cpp \
src/TcpUartModule.cpp \
src/Rotator.cpp
HEADERS += \
src/DataExchange.h \
src/Encoder.h \
src/IDataExchange.h \
src/MainWindow.h \
src/Servo.h \
src/ServoSettingsView.h \
src/TcpSettingsView.h \
src/sleepthread.h \
src/Log/Log.h \
src/MVP/Model.h \
src/MVP/Presentor.h \
src/MVP/AzElView.h \
src/ProtocolUtil.h \
src/Settings.h \
src/MessageBus.h \
src/TcpUartModule.h \
src/CommonConst.h \
src/Rotator.h
FORMS +=
DISTFILES += \
Config/settings.ini