49 lines
1.1 KiB
Prolog
49 lines
1.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-06-01T22:31:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui widgets network serialport multimedia
|
|
|
|
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 \
|
|
alarmsettingsdialog.cpp \
|
|
alarmactions.cpp \
|
|
relaywidget.cpp \
|
|
actor.cpp \
|
|
relay.cpp \
|
|
relaymanager.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
ampmanager.h \
|
|
alarmtime.h \
|
|
microcontroller.h \
|
|
relaydialog.h \
|
|
alarmsettingsdialog.h \
|
|
alarmactions.h \
|
|
relaywidget.h \
|
|
actor.h \
|
|
relay.h \
|
|
relaymanager.h
|
|
|
|
FORMS += mainwindow.ui \
|
|
relaydialog.ui \
|
|
alarmsettingsdialog.ui \
|
|
relaywidget.ui
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|