116 lines
2.5 KiB
Prolog
116 lines
2.5 KiB
Prolog
QT += core gui multimedia widgets bluetooth
|
|
|
|
|
|
CONFIG += c++17
|
|
|
|
# um die Dateien im 'data' dir zu finden ?? ->
|
|
# https://stackoverflow.com/questions/16250593/reading-from-and-writing-to-file-in-the-qt-resource-system-qt-5-0-2
|
|
INCLUDEPATH += .
|
|
|
|
linux {
|
|
LIBS += -lpigpio -lpigpiod_if2 -lrt
|
|
# FIXME SOURCES +=
|
|
}
|
|
|
|
windows {
|
|
#LIBS += -lpigpio -lpigpiod_if2 -lrt
|
|
# FIXME SOURCES +=
|
|
}
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
SWPiGPIO.cpp \
|
|
main.cpp \
|
|
raDIYoglobals.cpp \
|
|
raDIYo.cpp \
|
|
swadjustabledigit.cpp \
|
|
swalarmcontrol.cpp \
|
|
swbarwidget.cpp \
|
|
swbasecontrol.cpp \
|
|
swbluetoothcontrol.cpp \
|
|
swbuttongroup.cpp \
|
|
swclockcontrol.cpp \
|
|
swcontrol.cpp \
|
|
swdialbutton.cpp \
|
|
swdialhandler.cpp \
|
|
swdialcontrol.cpp \
|
|
swdialwidget.cpp \
|
|
swdummydialdialog.cpp \
|
|
swdummypushdial.cpp \
|
|
swfftcalc.cpp \
|
|
swflipdigit.cpp \
|
|
swlistcontrol.cpp \
|
|
swradiobutton.cpp \
|
|
swrangevalue.cpp \
|
|
swurl.cpp \
|
|
swusbcontrol.cpp \
|
|
swplayercontrol.cpp \
|
|
swsendercontrol.cpp \
|
|
swsetupcontrol.cpp \
|
|
swshutdowncontrol.cpp \
|
|
swsongscontrol.cpp \
|
|
swspectrumwidget.cpp \
|
|
swtoggleswitch.cpp \
|
|
swvolumewidget.cpp
|
|
|
|
HEADERS += \
|
|
SWPiGPIO.h \
|
|
raDIYoglobals.h \
|
|
raDIYo.h \
|
|
swadjustabledigit.h \
|
|
swalarmcontrol.h \
|
|
swbarwidget.h \
|
|
swbasecontrol.h \
|
|
swbluetoothcontrol.h \
|
|
swbuttongroup.h \
|
|
swclockcontrol.h \
|
|
swcontrol.h \
|
|
swdialbutton.h \
|
|
swdialhandler.h \
|
|
swdialcontrol.h \
|
|
swdialwidget.h \
|
|
swdummydialdialog.h \
|
|
swdummypushdial.h \
|
|
swfftcalc.h \
|
|
swflipdigit.h \
|
|
swlistcontrol.h \
|
|
swradiobutton.h \
|
|
swrangevalue.h \
|
|
swurl.h \
|
|
swusbcontrol.h \
|
|
swplayercontrol.h \
|
|
swsendercontrol.h \
|
|
swsetupcontrol.h \
|
|
swshutdowncontrol.h \
|
|
swsongscontrol.h \
|
|
swspectrumwidget.h \
|
|
swtoggleswitch.h \
|
|
swvolumewidget.h
|
|
|
|
FORMS += \
|
|
raDIYo.ui \
|
|
swalarmcontrol.ui \
|
|
swbasecontrol.ui \
|
|
swbluetoothcontrol.ui \
|
|
swclockcontrol.ui \
|
|
swdummydialdialog.ui \
|
|
swdummypushdial.ui \
|
|
swlistcontrol.ui \
|
|
swplayercontrol.ui \
|
|
swsetupcontrol.ui \
|
|
swshutdowncontrol.ui
|
|
|
|
RESOURCES += \
|
|
raDIYo.qrc
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
|
|
|