summaryrefslogtreecommitdiff
path: root/libsowatch/sowatch_global.h
blob: b5379300e15ccf0e1f635b7581381ebc1bcc5892 (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
30
31
32
33
#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(QT_SIMULATOR) || (!defined(MEEGO_VERSION_MAJOR) && !defined(Q_WS_MAEMO_5) && !defined(QT_NO_DEBUG))
#	define SOWATCH_PLUGINS_DIR		".."
#	define SOWATCH_RESOURCES_DIR	".."
#	define SOWATCH_QML_DIR			".."
#elif 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