mirror of https://github.com/nymea/nymea.git
30 lines
591 B
Prolog
30 lines
591 B
Prolog
include(../guh.pri)
|
|
|
|
message("Building guh version $${GUH_VERSION_STRING}")
|
|
|
|
TARGET = guhd
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += ../libguh jsonrpc
|
|
|
|
target.path = /usr/bin
|
|
INSTALLS += target
|
|
|
|
QT += network sql
|
|
|
|
LIBS += -L$$top_builddir/libguh/ -lguh
|
|
|
|
include(server.pri)
|
|
include(qtservice/qtservice.pri)
|
|
|
|
SOURCES += main.cpp
|
|
|
|
boblight {
|
|
xcompile {
|
|
LIBS += -L../plugins/deviceplugins/boblight -lguh_devicepluginboblight -lboblight
|
|
} else {
|
|
LIBS += -L../plugins/deviceplugins/boblight -lguh_devicepluginboblight -L/usr/local/lib/ -lboblight
|
|
}
|
|
DEFINES += USE_BOBLIGHT
|
|
}
|