-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGateWay.pro
53 lines (47 loc) · 1.23 KB
/
GateWay.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-14T19:11:35
# @auther: wushaoling sdust China
# @desc:implements the function of control or read
# temperature\light\humidity\ultrasound\relay\touch\smoke\motor\shake and so on
# enddevice, using socket and serialport communication
# @linux version: Linux skzh 3.0.8-EmbedSky #7 PREEMPT Tue Sep 2 17:34:43 CST 2014 armv7l GNU/Linux
# @make: make clean qmake-arm make
# @running: ./GateWay -qws
# @version: 1.0
#-------------------------------------------------
QT += core gui network
TARGET = GateWay
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
posix_qextserialport.cpp \
qextserialbase.cpp \
socketservice.cpp \
serialservice.cpp \
temp_humi_light.cpp \
motor.cpp \
relays.cpp \
touch.cpp \
smoke.cpp \
infray.cpp \
shake.cpp \
pwm.cpp \
ultra.cpp \
enddevice.cpp
HEADERS += mainwindow.h \
posix_qextserialport.h \
qextserialbase.h \
socketservice.h \
serialservice.h \
temp_humi_light.h \
motor.h \
relays.h \
touch.h \
smoke.h \
infray.h \
shake.h \
pwm.h \
ultra.h \
enddevice.h
FORMS += mainwindow.ui