osdomotics: Add Qt6 support

master
Simon Stürz 2025-08-08 15:41:50 +02:00
parent acf5e36925
commit ab2588db07
3 changed files with 8 additions and 10 deletions

View File

@ -52,9 +52,10 @@
*/ */
#include "integrationpluginosdomotics.h" #include "integrationpluginosdomotics.h"
#include "integrations/thing.h"
#include "plugininfo.h" #include "plugininfo.h"
#include "network/networkaccessmanager.h"
#include <integrations/thing.h>
#include <network/networkaccessmanager.h>
IntegrationPluginOsdomotics::IntegrationPluginOsdomotics() IntegrationPluginOsdomotics::IntegrationPluginOsdomotics()
{ {

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2020, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -31,15 +31,14 @@
#ifndef INTEGRATIONPLUGINOSDOMOTICS_H #ifndef INTEGRATIONPLUGINOSDOMOTICS_H
#define INTEGRATIONPLUGINOSDOMOTICS_H #define INTEGRATIONPLUGINOSDOMOTICS_H
#include "integrations/integrationplugin.h" #include <integrations/integrationplugin.h>
#include <coap/coap.h>
#include <plugintimer.h>
#include <QHash> #include <QHash>
#include <QDebug> #include <QDebug>
#include <QNetworkReply> #include <QNetworkReply>
#include "coap/coap.h"
#include "plugintimer.h"
class IntegrationPluginOsdomotics : public IntegrationPlugin class IntegrationPluginOsdomotics : public IntegrationPlugin
{ {
Q_OBJECT Q_OBJECT

View File

@ -1,8 +1,6 @@
include(../plugins.pri) include(../plugins.pri)
QT += network QT *= network
TARGET = $$qtLibraryTarget(nymea_integrationpluginosdomotics)
SOURCES += \ SOURCES += \
integrationpluginosdomotics.cpp integrationpluginosdomotics.cpp