oven_control.pro
1.42 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
68
69
70
#-------------------------------------------------
#
# Project created by QtCreator 2017-02-14T10:46:32
#
#-------------------------------------------------
QT += core gui
QT += network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = oven_control
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
cook.cpp \
oven.cpp \
abstractoveninterface.cpp \
clock.cpp \
manualcookwindow.cpp \
udphandler.cpp \
ovencontroller.cpp \
packetprinter.cpp \
configwindow.cpp \
functiontestwindow.cpp \
componenttestwindow.cpp \
burnertestwindow.cpp \
valvetestwindow.cpp \
washtestwindow.cpp \
fantestwindow.cpp \
gastestwindow.cpp
HEADERS += mainwindow.h \
cook.h \
oven.h \
abstractoveninterface.h \
clock.h \
manualcookwindow.h \
udphandler.h \
all_share.h \
ovencontroller.h \
packetprinter.h \
configwindow.h \
functiontestwindow.h \
componenttestwindow.h \
burnertestwindow.h \
valvetestwindow.h \
washtestwindow.h \
fantestwindow.h \
gastestwindow.h
FORMS += mainwindow.ui \
manualcookwindow.ui \
packetprinter.ui \
configwindow.ui \
functiontestwindow.ui \
componenttestwindow.ui \
burnertestwindow.ui \
valvetestwindow.ui \
washtestwindow.ui \
fantestwindow.ui \
gastestwindow.ui
RESOURCES += \
resources.qrc
target.path = /app
INSTALLS += target