2021-07-02 09:19:02 +00:00
|
|
|
QT += core gui
|
2019-11-13 01:28:22 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
2021-05-30 07:59:42 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
2019-11-13 01:28:22 +00:00
|
|
|
|
2021-05-17 06:43:33 +00:00
|
|
|
TARGET = devicebutton
|
2019-11-13 01:28:22 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
DESTDIR = $$PWD/../bin
|
|
|
|
CONFIG += warn_off
|
|
|
|
|
|
|
|
SOURCES += main.cpp
|
2021-05-17 06:43:33 +00:00
|
|
|
SOURCES += frmdevicebutton.cpp
|
|
|
|
SOURCES += devicebutton.cpp
|
2019-11-13 01:28:22 +00:00
|
|
|
|
2021-05-17 06:43:33 +00:00
|
|
|
HEADERS += frmdevicebutton.h
|
|
|
|
HEADERS += devicebutton.h
|
2019-11-13 01:28:22 +00:00
|
|
|
|
2021-05-17 06:43:33 +00:00
|
|
|
FORMS += frmdevicebutton.ui
|
2019-11-13 01:28:22 +00:00
|
|
|
|
|
|
|
RESOURCES += main.qrc
|