blob: 977bd535911684b58587981ddbe454fdd1f95a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SOWATCH_GLOBAL_H
#define SOWATCH_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(SOWATCH_LIBRARY)
# define SOWATCH_EXPORT Q_DECL_EXPORT
#else
# define SOWATCH_EXPORT Q_DECL_IMPORT
#endif
#if defined(Q_WS_MAEMO_5)
# define SOWATCH_DRIVERS_DIR "/opt/sowatch/drivers"
# define SOWATCH_NOTIFICATIONS_DIR "/opt/sowatch/notifications"
# define SOWATCH_WATCHLETS_DIR "/opt/sowatch/watchlets"
#elif defined(Q_OS_LINUX)
# define SOWATCH_DRIVERS_DIR "/usr/lib/sowatch/drivers"
# define SOWATCH_NOTIFICATIONS_DIR "/usr/lib/sowatch/notifications"
# define SOWATCH_WATCHLETS_DIR "/usr/lib/sowatch/watchlets"
#endif
#endif // SOWATCH_GLOBAL_H
|