mirror of https://github.com/nymea/nymea.git
29 lines
636 B
Prolog
29 lines
636 B
Prolog
TARGET = hive
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += ../libhive
|
|
|
|
target.path = /usr/bin
|
|
INSTALLS += target
|
|
|
|
QT += network
|
|
|
|
LIBS += -L../libhive/ -lhive
|
|
|
|
SOURCES += main.cpp \
|
|
hivecore.cpp \
|
|
jsonrpcserver.cpp \
|
|
tcpserver.cpp \
|
|
ruleengine.cpp \
|
|
rule.cpp
|
|
|
|
HEADERS += hivecore.h \
|
|
jsonrpcserver.h \
|
|
tcpserver.h \
|
|
ruleengine.h \
|
|
rule.h
|
|
|
|
# FIXME: Drop this and link them dynamically
|
|
LIBS += -L../plugins/deviceplugins/devicepluginelro/ -lhive_devicepluginelro
|
|
LIBS += -L../plugins/deviceplugins/devicepluginintertechno/ -lhive_devicepluginintertechno
|