Remove Qt plugins path rewriting

This commit is contained in:
crackedmind 2017-12-20 05:30:47 +03:00 committed by Berkus Decker
parent 59ee61a90d
commit 6ffc8d3905
4 changed files with 1 additions and 13 deletions

View File

@ -514,7 +514,6 @@ if (LINUX)
SourceFiles/platform/linux/notifications_manager_linux.cpp
SourceFiles/platform/linux/specific_linux.cpp
)
set(tg_RESOURCES Resources/qrc/telegram_linux.qrc)
endif()
list(APPEND tg_RESOURCES

View File

@ -1,2 +0,0 @@
[Paths]
Libraries=:/gui/art

View File

@ -1,5 +0,0 @@
<RCC>
<qresource prefix="/qt">
<file alias="etc/qt.conf">../etc/qt_linux.conf</file>
</qresource>
</RCC>

View File

@ -39,11 +39,7 @@ int main(int argc, char *argv[]) {
// both are finished in Application::closeApplication
Logs::start(); // must be started before Platform is started
Platform::start(); // must be started before QApplication is created
#if defined(Q_OS_LINUX64)
QCoreApplication::addLibraryPath("/usr/lib64/qt5/plugins");
#else
QCoreApplication::addLibraryPath("/usr/lib/qt5/plugins");
#endif
qputenv("QT_STYLE_OVERRIDE", "qwerty");
qunsetenv("QT_QPA_PLATFORMTHEME");