kdeconnect-kde/telepathy-cm/main.cpp
Aleix Pol Gonzalez a465577005 Move the Telepathy infrastructure at the plugin level
At the moment, telepathy integration needs to be compiled within the
daemon. This creates a rather aggressive dependency with Telepathy.

This plugin proposes to move into a plugin, so that if the plugin isn't
present, telepathy becomes out of the picture.

REVIEW: 128149
2016-06-18 11:54:38 +02:00

17 lines
401 B
C++

#include <QCoreApplication>
#include <TelepathyQt/BaseConnectionManager>
#include <TelepathyQt/Constants>
#include <TelepathyQt/Debug>
#include "kdeconnecttelepathyprotocolfactory.h"
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
app.setApplicationName(QLatin1String("telepathy-morse"));
KDEConnectTelepathyProtocolFactory::interface();
return app.exec();
}