Skip to content
Snippets Groups Projects
Commit aafac06a authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlProfiler: Fix EXPORT macro logic


Technically not needed (we don't export anything), but fixing it anyway...

Change-Id: Ie8017eb1eff427b293c5a993165aa1163e5504df
Reviewed-by: default avatarChristiaan Janssen <christiaan.janssen@nokia.com>
parent 2fee7f81
No related branches found
No related tags found
No related merge requests found
TEMPLATE = lib TEMPLATE = lib
TARGET = QmlProfiler TARGET = QmlProfiler
DEFINES += PROFILER_LIBRARY DEFINES += QMLPROFILER_LIBRARY
QT += network script QT += network script
greaterThan(QT_MAJOR_VERSION, 4) { greaterThan(QT_MAJOR_VERSION, 4) {
......
...@@ -33,10 +33,10 @@ ...@@ -33,10 +33,10 @@
#include <QtGlobal> #include <QtGlobal>
#if defined(QMLPROFILERPLUGIN_LIBRARY) #if defined(QMLPROFILER_LIBRARY)
# define QMLPROFILERPLUGINSHARED_EXPORT Q_DECL_EXPORT # define QMLPROFILER_EXPORT Q_DECL_EXPORT
#else #else
# define QMLPROFILERPLUGINSHARED_EXPORT Q_DECL_IMPORT # define QMLPROFILER_EXPORT Q_DECL_IMPORT
#endif #endif
#endif // QMLPROFILER_GLOBAL_H #endif // QMLPROFILER_GLOBAL_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment