-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTREKdisplay.pro
More file actions
executable file
·67 lines (55 loc) · 1.67 KB
/
TREKdisplay.pro
File metadata and controls
executable file
·67 lines (55 loc) · 1.67 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
#-------------------------------------------------
#
# Project created by QtCreator 2014-05-28T11:50:00
#
#-------------------------------------------------
cache()
QT += core gui network xml serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = DecaRangeRTLS
TEMPLATE = app
QMAKE_INFO_PLIST = Info.plist
INCLUDEPATH += models network views util tools
INCLUDEPATH += $$PWD/armadillo-3.930.0/include
LIBS += -L$$PWD/armadillo-3.930.0/lib/ -lblas_win32_MT
LIBS += -L$$PWD/armadillo-3.930.0/lib/ -llapack_win32_MT
SOURCES += main.cpp\
RTLSDisplayApplication.cpp \
views/mainwindow.cpp \
network/RTLSClient.cpp \
views/GraphicsView.cpp \
views/GraphicsWidget.cpp \
views/ViewSettingsWidget.cpp \
views/MinimapView.cpp \
views/connectionwidget.cpp \
models/ViewSettings.cpp \
tools/OriginTool.cpp \
tools/RubberBandTool.cpp \
tools/ScaleTool.cpp \
util/QPropertyModel.cpp \
network/SerialConnection.cpp \
tools/trilateration.cpp
HEADERS += \
RTLSDisplayApplication.h \
views/mainwindow.h \
network/RTLSClient.h \
views/GraphicsView.h \
views/GraphicsWidget.h \
views/ViewSettingsWidget.h \
views/MinimapView.h \
views/connectionwidget.h \
models/ViewSettings.h \
tools/AbstractTool.h \
tools/OriginTool.h \
tools/RubberBandTool.h \
tools/ScaleTool.h \
util/QPropertyModel.h \
network/SerialConnection.h \
tools/trilateration.h
FORMS += \
views/mainwindow.ui \
views/GraphicsWidget.ui \
views/ViewSettingsWidget.ui \
views/connectionwidget.ui
RESOURCES += \
res/resources.qrc