Blame view

app/gui/oven_control/oven_control.pro 1.43 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
8
9
10
  #-------------------------------------------------
  #
  # Project created by QtCreator 2017-02-14T10:46:32
  #
  #-------------------------------------------------
  
  QT       += core gui
  QT       += network
  
  greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
02d63e8da   김태훈   INSTALL PATH 변경, ...
11
  TARGET = app-prime-gui
8c2952457   김태훈   응용 프로그램 추가
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
  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
c598b01b2   김태훈   GUI 업데이트
67
02d63e8da   김태훈   INSTALL PATH 변경, ...
68
  target.path = /falinux/dev
c598b01b2   김태훈   GUI 업데이트
69
  INSTALLS += target