ошибка: QXmppDiscoveryIq.h: No such file or directory
C++ (Qt)g++ -shared -Wl,-subsystem,windows -mthreads -Wl,--out-implib,..\bin\debug\libQXMPP.a -o ..\bin\debug\QXMPP.dll object_script.QXMPP.Debug -LE:/_Gleb/QT_Creator_Last/5.5/mingw492_32/lib -lQt5Guid -lQt5Networkd -lQt5Xmld -lQt5Cored ./debug\QXmppServer.o: In function `ZN29Staticmod_discoPluginInstanceC1Ev':E:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:42: undefined reference to `qt_static_plugin_mod_disco()'./debug\QXmppServer.o: In function `ZN28Staticmod_pingPluginInstanceC1Ev':E:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:43: undefined reference to `qt_static_plugin_mod_ping()'./debug\QXmppServer.o: In function `ZN31Staticmod_proxy65PluginInstanceC1Ev':E:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:44: undefined reference to `qt_static_plugin_mod_proxy65()'./debug\QXmppServer.o: In function `ZN29Staticmod_statsPluginInstanceC1Ev':Makefile.Debug:404: recipe for target '..\bin\debug\QXMPP.dll' failedE:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:45: undefined reference to `qt_static_plugin_mod_stats()'./debug\QXmppServer.o: In function `ZN28Staticmod_timePluginInstanceC1Ev':E:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:46: undefined reference to `qt_static_plugin_mod_time()'./debug\QXmppServer.o: In function `ZN31Staticmod_versionPluginInstanceC1Ev':E:\_Gleb\_HelpMeDev\QXMPP/../helpme/QXMPP/QXmppServer.cpp:47: undefined reference to `qt_static_plugin_mod_version()'collect2.exe: error: ld returned 1 exit statusmingw32-make[2]: Leaving directory 'E:/_Gleb/_HelpMeDev/QXMPP'Makefile:34: recipe for target 'debug' failedmingw32-make[1]: Leaving directory 'E:/_Gleb/_HelpMeDev/QXMPP'makefile:93: recipe for target 'sub-QXMPP-make_first' failedmingw32-make[2]: *** [..\bin\debug\QXMPP.dll] Error 1mingw32-make[1]: *** [debug] Error 2mingw32-make: *** [sub-QXMPP-make_first] Error 211:18:45: Процесс «E:\_Gleb\QT_Creator_Last\Tools\mingw492_32\bin\mingw32-make.exe» завершился с кодом 2.Ошибка при сборке/установке проекта Main (комплект: Desktop Qt 5.5.0 MinGW 32bit)Во время выполнения этапа «Сборка»11:18:45: Прошло времени: 00:07.
C++ (Qt)# PluginsDEFINES += QT_STATICPLUGINHEADERS += \ server/mod_disco.h \ server/mod_ping.h \ server/mod_proxy65.h \ server/mod_stats.h \ server/mod_time.h \ server/mod_version.hSOURCES += \ server/mod_disco.cpp \ server/mod_ping.cpp \ server/mod_proxy65.cpp \ server/mod_stats.cpp \ server/mod_time.cpp \ server/mod_version.cpp DEFINE = QXMPP_NO_GUI
C++ (Qt)// PLUGIN class QXmppServerDiscoveryPlugin : public QXmppServerPlugin{public: QXmppServerExtension *create(const QString &key) { if (key == QLatin1String("ping")) return new QXmppServerDiscovery; else return 0; }; QStringList keys() const { return QStringList() << QLatin1String("ping"); }; };Q_EXPORT_STATIC_PLUGIN2(mod_disco, QXmppServerDiscoveryPlugin)