summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2013-11-03 11:22:44 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2013-11-04 23:32:57 +0100
commit2b054e6135cbce030a642157dc1345f9dd42950b (patch)
treebd0fd7b7c9ba0b31e45963c9bca5b7e60767b3bb /rbutil/rbutilqt
parent4d2ce949b3b41f8bf0af446fa20205ddd229e579 (diff)
downloadrockbox-2b054e6135cbce030a642157dc1345f9dd42950b.tar.gz
rockbox-2b054e6135cbce030a642157dc1345f9dd42950b.zip
Fix cutelogger with MSVC.
We're compiling cutelogger directly, not as DLL. Therefore we must not add __declspec attributes to the header. Change-Id: I41b87fd4ba34dfbcd0d37245ff1c1f279139bb33
Diffstat (limited to 'rbutil/rbutilqt')
-rw-r--r--rbutil/rbutilqt/logger/CuteLogger_global.h4
-rw-r--r--rbutil/rbutilqt/rbutilqt.pro2
2 files changed, 5 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/logger/CuteLogger_global.h b/rbutil/rbutilqt/logger/CuteLogger_global.h
index 43e74affdb..c5e7680845 100644
--- a/rbutil/rbutilqt/logger/CuteLogger_global.h
+++ b/rbutil/rbutilqt/logger/CuteLogger_global.h
@@ -3,10 +3,14 @@
3 3
4#include <QtCore/qglobal.h> 4#include <QtCore/qglobal.h>
5 5
6#if !defined(CUTELOGGER_STATIC)
6#if defined(CUTELOGGER_LIBRARY) 7#if defined(CUTELOGGER_LIBRARY)
7# define CUTELOGGERSHARED_EXPORT Q_DECL_EXPORT 8# define CUTELOGGERSHARED_EXPORT Q_DECL_EXPORT
8#else 9#else
9# define CUTELOGGERSHARED_EXPORT Q_DECL_IMPORT 10# define CUTELOGGERSHARED_EXPORT Q_DECL_IMPORT
10#endif 11#endif
12#else
13#define CUTELOGGERSHARED_EXPORT
14#endif
11 15
12#endif // CUTELOGGER_GLOBAL_H 16#endif // CUTELOGGER_GLOBAL_H
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro
index 4a4016c21d..00e0c87c8f 100644
--- a/rbutil/rbutilqt/rbutilqt.pro
+++ b/rbutil/rbutilqt/rbutilqt.pro
@@ -153,7 +153,7 @@ dbg {
153 message("release") 153 message("release")
154} 154}
155 155
156DEFINES += RBUTIL _LARGEFILE64_SOURCE 156DEFINES += RBUTIL _LARGEFILE64_SOURCE CUTELOGGER_STATIC
157 157
158# check version of Qt installation 158# check version of Qt installation
159!contains(QT_MAJOR_VERSION, 5):!macx { 159!contains(QT_MAJOR_VERSION, 5):!macx {