35 lines
885 B
Prolog
35 lines
885 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-06-01T22:31:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui widgets network serialport
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT +=
|
|
|
|
TARGET = SHinterface
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which as been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
SOURCES += main.cpp mainwindow.cpp ampmanager.cpp alarmtime.cpp \
|
|
microcontroller.cpp \
|
|
relaydialog.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
ampmanager.h \
|
|
relay.h \
|
|
alarmtime.h \
|
|
microcontroller.h \
|
|
relaydialog.h
|
|
|
|
FORMS += mainwindow.ui \
|
|
relaydialog.ui
|