blob: 510a38ac4dcff0038a1e4421bb9c156c0a97bc63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef SOWATCH_GLOBAL_H
#define SOWATCH_GLOBAL_H
#include <QtCore/qglobal.h>
#include <qplatformdefs.h>
#if defined(SOWATCH_LIBRARY)
# define SOWATCH_EXPORT Q_DECL_EXPORT
#else
# define SOWATCH_EXPORT Q_DECL_IMPORT
#endif
#if defined(MEEGO_VERSION_MAJOR) || defined(Q_WS_MAEMO_5)
# define SOWATCH_PLUGINS_DIR "/opt/sowatch/lib"
# define SOWATCH_RESOURCES_DIR "/opt/sowatch/share"
# define SOWATCH_QML_DIR "/opt/sowatch/qml"
#elif defined(Q_OS_LINUX)
# define SOWATCH_PLUGINS_DIR "/usr/lib/sowatch"
# define SOWATCH_RESOURCES_DIR "/usr/share/sowatch"
# define SOWATCH_QML_DIR SOWATCH_RESOURCES_DIR "/qml"
#else
# error Please define the paths for your platform
#endif
#define SOWATCH_DRIVERS_DIR SOWATCH_PLUGINS_DIR "/drivers"
#define SOWATCH_NOTIFICATIONS_DIR SOWATCH_PLUGINS_DIR "/notifications"
#define SOWATCH_WATCHLETS_DIR SOWATCH_PLUGINS_DIR "/watchlets"
#endif // SOWATCH_GLOBAL_H
|