-
Notifications
You must be signed in to change notification settings - Fork 0
/
WeatherRadarTest.pro
73 lines (60 loc) · 1.58 KB
/
WeatherRadarTest.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-03-03T11:18:53
#
#-------------------------------------------------
QT += core gui
QT += network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = WeatherRadarTest
TEMPLATE = app
DEPENDPATH += ./lib
DEPENDPATH += ./lib/qextserialport
INCLUDEPATH += ./lib
INCLUDEPATH += ./lib/qextserialport
LIBS += -L$${PWD}/lib/qextserialport -lqextserialportd
LIBS += -L$${PWD}/lib/qextserialport -lqextserialport
#LIBS += -L ./ -lqextserialportd
#LIBS += -L ./ -lqextserialport
SOURCES += main.cpp\
mainwindow.cpp \
dialogsetting.cpp \
dialogsample.cpp \
maindisplay.cpp \
rvp900.cpp \
fetchdatathread.cpp \
dispdevice.cpp \
sector.cpp \
palette.cpp \
uartcomm.cpp \
utils.cpp
HEADERS += mainwindow.h \
dialogsetting.h \
dialogsample.h \
constcode.h \
constRVP900.h \
maindisplay.h \
rvp900.h \
fetchdatathread.h \
dispdevice.h \
sector.h \
palette.h \
uartcomm.h \
headerctrl.h \
lib/qextserialport/posix_qextserialport.h \
lib/qextserialport/qextserialbase.h \
lib/qextserialport/qextserialenumerator.h \
lib/qextserialport/qextserialport.h \
#lib/qextserialport/win_qextserialport.h
utils.h
FORMS += mainwindow.ui \
dialogsetting.ui \
dialogsample.ui
RESOURCES += \
WeatherRadarRes.qrc
RC_FILE += \
weather.rc
CONFIG(debug, debug|release):LIBS += -lqextserialportd
else:LIBS += -lqextserialport
unix:DEFINES = _TTY_POSIX_
win32:DEFINES = _TTY_WIN_