-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTFStubViz.pro
103 lines (90 loc) · 2.43 KB
/
TFStubViz.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#-------------------------------------------------
#
# Project created by QtCreator 2015-01-10T10:21:39
#
#-------------------------------------------------
#---- for Qt 5 only
QT += core gui widgets
QMAKE_CC = gcc
QMAKE_CXX = g++
exists(/usr/bin/g++-10) {
QMAKE_CXX = g++-10
QMAKE_CC = gcc-10
}
exists(/usr/bin/g++-11) {
QMAKE_CXX = g++-11
QMAKE_CC = gcc-11
}
TARGET = TFStubViz
TEMPLATE = app
CONFIG += c++17
QMAKE_CXXFLAGS += -Wall -Wignored-qualifiers -Wparentheses -Woverloaded-virtual -Wsign-compare -Werror -std=c++17
SOURCES += main.cpp \
buttonwidget.cpp \
digitalin.cpp \
dualbutton.cpp \
dualsensor.cpp \
lcd.cpp \
lcddisplayarea.cpp \
ledbutton.cpp \
ledstrip.cpp \
mainwindow.cpp \
motionsensor.cpp \
multisensor.cpp \
oled.cpp \
outdoorsensors.cpp \
piezospeaker.cpp \
relay.cpp \
sensor.cpp \
sensorinterface.cpp \
serverthread.cpp \
singleoutdoorsensor.cpp \
statusled.cpp \
touchpad.cpp \
visualizationwidget.cpp
HEADERS += mainwindow.h \
buttonwidget.h \
digitalin.h \
dualbutton.h \
dualsensor.h \
lcd.h \
lcddisplayarea.h \
ledbutton.h \
ledstrip.h \
motionsensor.h \
multisensor.h \
oled.h \
outdoorsensors.h \
piezospeaker.h \
relay.h \
sensor.h \
sensorinterface.h \
serverthread.h \
singleoutdoorsensor.h \
statusled.h \
touchpad.h \
visualizationwidget.h
FORMS += mainwindow.ui \
digitalin.ui \
dualbutton.ui \
lcd.ui \
ledbutton.ui \
ledstrip.ui \
motionsensor.ui \
oled.ui \
outdoorsensors.ui \
piezo.ui \
poti.ui \
relay.ui \
sensor.ui \
touchpad.ui
unix:CONFIG(release, debug|release): LIBS += -L$$PWD/../TFStubserver/lib/Release -lstubserver -lutils -lasound
else:unix:CONFIG(debug, debug|release): LIBS += -L$$PWD/../TFStubserver/lib/Debug -lstubserver -lutils -lasound
unix:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../TFStubserver/lib/Release/libstubserver.a
else:unix:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../TFStubserver/lib/Debug/libstubserver.a
RESOURCES += \
images.qrc
INCLUDEPATH += $$PWD/../TFStubserver/src
DEPENDPATH += $$PWD/../TFStubserver/src
unix:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../TFStubserver/lib/Release/libutils.a
else:unix:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../TFStubserver/lib/Debug/libutils.a