Merge PR #420: Fix some includes to be more flexible on finding headers
This commit is contained in:
commit
bd570c58b9
@ -36,7 +36,7 @@
|
|||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
#include <nymea-mqtt/mqttclient.h>
|
#include <mqttclient.h>
|
||||||
|
|
||||||
class AWSConnector : public QObject
|
class AWSConnector : public QObject
|
||||||
{
|
{
|
||||||
|
|||||||
@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
#include <networkmanager.h>
|
#include <networkmanager.h>
|
||||||
|
|
||||||
#include "nymea-remoteproxyclient/remoteproxyconnection.h"
|
#include <remoteproxyconnection.h>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
|
||||||
using namespace remoteproxyclient;
|
using namespace remoteproxyclient;
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include "../transportinterface.h"
|
#include "../transportinterface.h"
|
||||||
#include "remoteproxyconnection.h"
|
#include <remoteproxyconnection.h>
|
||||||
|
|
||||||
namespace nymeaserver {
|
namespace nymeaserver {
|
||||||
|
|
||||||
|
|||||||
@ -31,7 +31,7 @@
|
|||||||
#include "mqttbroker.h"
|
#include "mqttbroker.h"
|
||||||
#include "loggingcategories.h"
|
#include "loggingcategories.h"
|
||||||
|
|
||||||
#include "nymea-mqtt/mqttserver.h"
|
#include <mqttserver.h>
|
||||||
|
|
||||||
namespace nymeaserver {
|
namespace nymeaserver {
|
||||||
|
|
||||||
|
|||||||
@ -35,7 +35,7 @@
|
|||||||
#include <QHostAddress>
|
#include <QHostAddress>
|
||||||
#include <QSslConfiguration>
|
#include <QSslConfiguration>
|
||||||
|
|
||||||
#include "nymea-mqtt/mqtt.h"
|
#include <mqtt.h>
|
||||||
#include "nymeaconfiguration.h"
|
#include "nymeaconfiguration.h"
|
||||||
|
|
||||||
class MqttServer;
|
class MqttServer;
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
QT += dbus testlib network sql websockets
|
QT += dbus testlib network sql websockets
|
||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
|
CONFIG += link_pkgconfig
|
||||||
|
|
||||||
INCLUDEPATH += $$top_srcdir/libnymea \
|
INCLUDEPATH += $$top_srcdir/libnymea \
|
||||||
$$top_srcdir/libnymea-core \
|
$$top_srcdir/libnymea-core \
|
||||||
|
|||||||
@ -2,7 +2,8 @@ include(../../../nymea.pri)
|
|||||||
include(../autotests.pri)
|
include(../autotests.pri)
|
||||||
|
|
||||||
QT += xml
|
QT += xml
|
||||||
|
PKGCONFIG += nymea-mqtt
|
||||||
|
|
||||||
LIBS += -lnymea-mqtt
|
|
||||||
TARGET = mqttbroker
|
TARGET = mqttbroker
|
||||||
SOURCES += testmqttbroker.cpp
|
SOURCES += testmqttbroker.cpp
|
||||||
|
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
#include "servers/mqttbroker.h"
|
#include "servers/mqttbroker.h"
|
||||||
#include "servers/mocktcpserver.h"
|
#include "servers/mocktcpserver.h"
|
||||||
|
|
||||||
#include "nymea-mqtt/mqttclient.h"
|
#include <mqttclient.h>
|
||||||
|
|
||||||
#include <QXmlReader>
|
#include <QXmlReader>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user