Browse Source

Use qico plugin in static build. Required for RSS favicon capabilities.

adaptive-webui-19844
Nick Tiskov 12 years ago
parent
commit
0cdb833aa6
  1. 4
      src/main.cpp
  2. 5
      winconf.pri

4
src/main.cpp

@ -34,6 +34,10 @@ @@ -34,6 +34,10 @@
#include <QLibraryInfo>
#ifndef DISABLE_GUI
#if defined(QBT_STATIC_QT)
#include <QtPlugin>
Q_IMPORT_PLUGIN(qico)
#endif
#include <QMessageBox>
#include <QStyleFactory>
#include <QStyle>

5
winconf.pri

@ -45,3 +45,8 @@ else { @@ -45,3 +45,8 @@ else {
DEFINES += WITH_GEOIP_EMBEDDED
message("On Windows, GeoIP database must be embedded.")
CONFIG(static) {
DEFINES += QBT_STATIC_QT
QTPLUGIN += qico
}

Loading…
Cancel
Save