diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-02 13:21:22 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-02 13:21:22 +0000 |
| commit | d926747985f235f33ad2a7d654beceb688391e83 (patch) | |
| tree | 9721087c205d8b6deba5ef3266479f22c39cf349 /src/plugins | |
| parent | 59b45bbaf6a0c2d8f73415da3c0884146a788c0c (diff) | |
| download | qmmp-d926747985f235f33ad2a7d654beceb688391e83.tar.gz qmmp-d926747985f235f33ad2a7d654beceb688391e83.tar.bz2 qmmp-d926747985f235f33ad2a7d654beceb688391e83.zip | |
fixed win32 build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8091 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/General/General.pro | 4 | ||||
| -rw-r--r-- | src/plugins/General/hotkey/hotkeymanager_win.cpp | 1 | ||||
| -rw-r--r-- | src/plugins/General/trackchange/trackchange.pro | 4 | ||||
| -rw-r--r-- | src/plugins/Output/directsound/outputdirectsound.cpp | 1 | ||||
| -rw-r--r-- | src/plugins/Output/directsound/outputdirectsound.h | 1 | ||||
| -rw-r--r-- | src/plugins/Output/directsound/outputdirectsoundfactory.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Output/waveout/outputwaveoutfactory.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Output/waveout/outputwaveoutfactory.h | 1 | ||||
| -rw-r--r-- | src/plugins/plugins.pri | 4 |
9 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/General/General.pro b/src/plugins/General/General.pro index 03727ba7d..022054166 100644 --- a/src/plugins/General/General.pro +++ b/src/plugins/General/General.pro @@ -8,13 +8,13 @@ SUBDIRS += statusicon \ covermanager \ streambrowser \ trackchange \ - hotkey \ copypaste \ rgscan unix:SUBDIRS += mpris \ kdenotify \ converter \ - gnomehotkey + gnomehotkey \ + hotkey contains(CONFIG, UDISKS2_PLUGIN){ unix:SUBDIRS += udisks2 diff --git a/src/plugins/General/hotkey/hotkeymanager_win.cpp b/src/plugins/General/hotkey/hotkeymanager_win.cpp index 44fdb6cb6..3edc818be 100644 --- a/src/plugins/General/hotkey/hotkeymanager_win.cpp +++ b/src/plugins/General/hotkey/hotkeymanager_win.cpp @@ -21,7 +21,6 @@ #include <QtGlobal>
#ifdef Q_OS_WIN
#include <QSettings>
-#include <QX11Info>
#include <QEvent>
#include <QKeyEvent>
#include <QCoreApplication>
diff --git a/src/plugins/General/trackchange/trackchange.pro b/src/plugins/General/trackchange/trackchange.pro index af10e745b..0406e78af 100644 --- a/src/plugins/General/trackchange/trackchange.pro +++ b/src/plugins/General/trackchange/trackchange.pro @@ -8,9 +8,7 @@ unix : QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libtrackchange.so TEMPLATE = lib -unix : LIBS += -lqmmpui -lqmmp - -win32 : LIBS += -lqmmpui0 -lqmmp0 +LIBS += $${QMMPUI_LIB} RESOURCES = translations/translations.qrc unix { diff --git a/src/plugins/Output/directsound/outputdirectsound.cpp b/src/plugins/Output/directsound/outputdirectsound.cpp index d4f0bcd75..b04d8467f 100644 --- a/src/plugins/Output/directsound/outputdirectsound.cpp +++ b/src/plugins/Output/directsound/outputdirectsound.cpp @@ -20,6 +20,7 @@ #include <QObject>
#include <QSettings>
+#include <QMessageBox>
#include <string.h>
#include <iostream>
#include <unistd.h>
diff --git a/src/plugins/Output/directsound/outputdirectsound.h b/src/plugins/Output/directsound/outputdirectsound.h index 94a07d9b7..fca83fd0a 100644 --- a/src/plugins/Output/directsound/outputdirectsound.h +++ b/src/plugins/Output/directsound/outputdirectsound.h @@ -21,6 +21,7 @@ #ifndef OUTPUTDIRECTSOUND_H
#define OUTPUTDIRECTSOUND_H
+#include <QTranslator>
#include <stdio.h>
#include <windows.h>
#include <ksmedia.h>
diff --git a/src/plugins/Output/directsound/outputdirectsoundfactory.cpp b/src/plugins/Output/directsound/outputdirectsoundfactory.cpp index 99f294cc7..a05a9f3aa 100644 --- a/src/plugins/Output/directsound/outputdirectsoundfactory.cpp +++ b/src/plugins/Output/directsound/outputdirectsoundfactory.cpp @@ -18,7 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-
+#include <QMessageBox>
#include "outputdirectsound.h"
#include "outputdirectsoundfactory.h"
diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.cpp b/src/plugins/Output/waveout/outputwaveoutfactory.cpp index f9eb0f684..85a94e615 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.cpp +++ b/src/plugins/Output/waveout/outputwaveoutfactory.cpp @@ -18,7 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-
+#include <QMessageBox>
#include "outputwaveout.h"
#include "outputwaveoutfactory.h"
diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.h b/src/plugins/Output/waveout/outputwaveoutfactory.h index c8b992408..16675a27a 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.h +++ b/src/plugins/Output/waveout/outputwaveoutfactory.h @@ -24,6 +24,7 @@ #include <QString>
#include <QIODevice>
#include <QWidget>
+#include <QTranslator>
#include <qmmp/output.h>
#include <qmmp/outputfactory.h>
diff --git a/src/plugins/plugins.pri b/src/plugins/plugins.pri index a08fde35f..35db085e3 100644 --- a/src/plugins/plugins.pri +++ b/src/plugins/plugins.pri @@ -5,8 +5,8 @@ QMAKE_LIBDIR += ../../../../lib win32 { QMAKE_LIBDIR += ../../../../bin PLUGINS_PREFIX=../../../../../bin/plugins - LIBS += -lqmmp0 - QMMPUI_LIB = -lqmmpui0 + LIBS += -lqmmp1 + QMMPUI_LIB = -lqmmpui1 } unix { |
