This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Simon Stuerz 3bf97a7e0d RF plugins added and made more stable
played with the client gui
2013-09-06 09:54:14 +02:00

45 lines
937 B
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2013-08-15T13:14:35
#
#-------------------------------------------------
QT += core network
QT -= gui
TARGET = hive
CONFIG += console
CONFIG -= app_bundle
target.path = /root/bin
INSTALLS += target
TEMPLATE = app
LIBS += -L$$OUT_PWD/../../libhive/ -llibhive
LIBS += -L$$RPI_SYSROOT/usr/local/lib -lwiringPi
INCLUDEPATH += /home/timon/opt/rasp-pi-rootfs/usr/local/include
INCLUDEPATH += $$PWD/../../libhive
DEPENDPATH += $$PWD/../../libhive
SOURCES += main.cpp \
hivecore.cpp \
radio/radioreciver.cpp \
radio/radiosender.cpp \
radio/plugins/radioplugin.cpp \
radio/plugins/rfthermometer.cpp \
radio/plugins/rfswitch.cpp
HEADERS += \
hivecore.h \
radio/radioreciver.h \
radio/radiosender.h \
radio/plugins/radioplugin.h \
radio/plugins/rfthermometer.h \
radio/plugins/rfswitch.h