-
Notifications
You must be signed in to change notification settings - Fork 105
/
info.h
54 lines (40 loc) · 994 Bytes
/
info.h
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef INFO_H_
#define INFO_H_
#define INFO_VERSION "8.0"
#define INFO_YEAR "2010-2020"
#define INFO_DEV "Matlo"
#define INFO_WEB "http://gimx.fr"
#define INFO_LICENCE "GNU GPL v3"
#define INFO_FW_VERSION "8.0"
#ifdef __x86_64__
#define INFO_ARCH "x86_64"
#endif
#ifdef __i386__
#define INFO_ARCH "i386"
#endif
#ifdef __ARM_ARCH_6__
#define INFO_ARCH "ARMv6"
#endif
#ifndef INFO_ARCH
#define INFO_ARCH ""
#endif
#define VERSION_URL "https://gimx.fr/download/version"
#ifdef WIN32
#ifdef __x86_64__
#define DOWNLOAD_URL "https://gimx.fr/download/gimx-windows-64bits"
#endif
#ifdef __i386__
#define DOWNLOAD_URL "https://gimx.fr/download/gimx-windows-32bits"
#endif
#else
#ifdef __x86_64__
#define DOWNLOAD_URL "https://gimx.fr/download/gimx-ubuntu-64bits"
#endif
#ifdef __i386__
#define DOWNLOAD_URL "https://gimx.fr/download/gimx-ubuntu-32bits"
#endif
#ifdef __ARM_ARCH_6__
#define DOWNLOAD_URL "https://gimx.fr/download/gimx-raspbian"
#endif
#endif
#endif /* INFO_H_ */