2017-03-04 09:27:52 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-03-04 09:27:52 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-03-04 09:27:52 +00:00
|
|
|
*/
|
|
|
|
#include <QtCore/QtPlugin>
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
Q_IMPORT_PLUGIN(QWebpPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
|
|
|
#elif defined Q_OS_MAC // Q_OS_WIN
|
|
|
|
Q_IMPORT_PLUGIN(QWebpPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QGenericEnginePlugin)
|
|
|
|
#elif defined Q_OS_LINUX // Q_OS_WIN | Q_OS_MAC
|
|
|
|
Q_IMPORT_PLUGIN(QWebpPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QConnmanEnginePlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QGenericEnginePlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QNetworkManagerEnginePlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QComposePlatformInputContextPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QIbusPlatformInputContextPlugin)
|
|
|
|
Q_IMPORT_PLUGIN(QFcitxPlatformInputContextPlugin)
|
2017-06-02 18:52:58 +00:00
|
|
|
Q_IMPORT_PLUGIN(QHimePlatformInputContextPlugin)
|
2018-12-06 07:30:08 +00:00
|
|
|
Q_IMPORT_PLUGIN(NimfInputContextPlugin)
|
2017-03-04 09:27:52 +00:00
|
|
|
#endif // Q_OS_WIN | Q_OS_MAC | Q_OS_LINUX
|