wemo: Add Qt6 support

This commit is contained in:
Simon Stürz 2025-08-11 15:05:15 +02:00
parent d9e02a719c
commit d935f0eb40
3 changed files with 10 additions and 11 deletions

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.
@ -29,11 +29,12 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "integrationpluginwemo.h" #include "integrationpluginwemo.h"
#include "integrations/thing.h"
#include "plugininfo.h" #include "plugininfo.h"
#include "network/networkaccessmanager.h"
#include "network/upnp/upnpdiscovery.h" #include <plugintimer.h>
#include <integrations/thing.h>
#include <network/networkaccessmanager.h>
#include <network/upnp/upnpdiscovery.h>
#include <QDebug> #include <QDebug>
#include <QNetworkReply> #include <QNetworkReply>

View File

@ -31,10 +31,10 @@
#ifndef INTEGRATIONPLUGINWEMO_H #ifndef INTEGRATIONPLUGINWEMO_H
#define INTEGRATIONPLUGINWEMO_H #define INTEGRATIONPLUGINWEMO_H
#include "plugintimer.h" #include <integrations/integrationplugin.h>
#include "integrations/integrationplugin.h"
#include <QNetworkReply> class QNetworkReply;
class PluginTimer;
class IntegrationPluginWemo : public IntegrationPlugin class IntegrationPluginWemo : public IntegrationPlugin
{ {

View File

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