source: tspsg/src/os.h @ 6dfdef0c3e

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since 6dfdef0c3e was 430bd7f7e9, checked in by Oleksii Serdiuk, 15 years ago

+ Finished solving algorithm (needs thorough testing).
+ Solution can be saved to HTML or OpenDocument? format.
+ Added VERSIONINFO resource for windows builds.

  • Updated translations to have unified terminology everywhere.

NB: This will be the first public alpha build.

  • Property mode set to 100644
File size: 3.8 KB
Line 
1/*
2 *  TSPSG: TSP Solver and Generator
3 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id$
6 *  $URL$
7 *
8 *  This file is part of TSPSG.
9 *
10 *  TSPSG is free software: you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License as published by
12 *  the Free Software Foundation, either version 3 of the License, or
13 *  (at your option) any later version.
14 *
15 *  TSPSG is distributed in the hope that it will be useful,
16 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 *  GNU General Public License for more details.
19 *
20 *  You should have received a copy of the GNU General Public License
21 *  along with TSPSG.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#ifndef OS_H
25#define OS_H
26
27// Some target arch detection.
28// NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers
29#if defined(__amd64__) || defined(_M_X64)
30        #define ARCH " (AMD 64-bit)"
31#elif defined(__ia64__) || defined(_M_IA64)
32        #define ARCH " (Intel 64-bit)"
33#elif defined(__i386__) || defined(_M_IX86) || defined(_X86_)
34        #define ARCH " (Intel x86)"
35#elif defined(__powerpc__) || defined(_M_PPC)
36        #define ARCH " (PowerPC)"
37#elif defined(__arm__) || defined(_M_ARM)
38        #define ARCH " (ARM)"
39#elif defined(__mips__) || defined(_M_MRX000)
40        #define ARCH " (MIPS)"
41#else
42        #define ARCH ""
43#endif // ARCH
44
45#ifdef Q_OS_AIX
46        #define OS "AIX"ARCH
47        #define OSID quint8(1)
48#elif defined Q_OS_BSD4
49        #define OS "BSD 4.4"ARCH
50        #define OSID quint8(2)
51#elif defined Q_OS_BSDI
52        #define OS "BSD/OS"ARCH
53        #define OSID quint8(3)
54#elif defined Q_OS_CYGWIN
55        #define OS "Cygwin"ARCH
56        #define OSID quint8(4)
57#elif defined Q_OS_DARWIN
58        #define OS "Darwin OS"ARCH
59        #define OSID quint8(5)
60#elif defined Q_OS_DGUX
61        #define OS "DG/UX"ARCH
62        #define OSID quint8(6)
63#elif defined Q_OS_DYNIX
64        #define OS "DYNIX/ptx"ARCH
65        #define OSID quint8(7)
66#elif defined Q_OS_FREEBSD
67        #define OS "FreeBSD"ARCH
68        #define OSID quint8(8)
69#elif defined Q_OS_HPUX
70        #define OS "HP-UX"ARCH
71        #define OSID quint8(9)
72#elif defined Q_OS_HURD
73        #define OS "GNU Hurd"ARCH
74        #define OSID quint8(10)
75#elif defined Q_OS_IRIX
76        #define OS "SGI Irix"ARCH
77        #define OSID quint8(11)
78#elif defined Q_OS_LINUX
79        #define OS "Linux"ARCH
80        #define OSID quint8(12)
81#elif defined Q_OS_LYNX
82        #define OS "LynxOS"ARCH
83        #define OSID quint8(13)
84#elif defined Q_OS_MSDOS
85        #define OS "MS-DOS"ARCH
86        #define OSID quint8(14)
87#elif defined Q_OS_NETBSD
88        #define OS "NetBSD"ARCH
89        #define OSID quint8(15)
90#elif defined Q_OS_OS2
91        #define OS "OS/2"ARCH
92        #define OSID quint8(16)
93#elif defined Q_OS_OPENBSD
94        #define OS "OpenBSD"ARCH
95        #define OSID quint8(17)
96#elif defined Q_OS_OS2EMX
97        #define OS "OS/2"ARCH
98        #define OSID quint8(18)
99#elif defined Q_OS_OSF
100        #define OS "HP Tru64 UNIX"ARCH
101        #define OSID quint8(19)
102#elif defined Q_OS_QNX6
103        #define OS "QNX RTP 6.1"ARCH
104        #define OSID quint8(20)
105#elif defined Q_OS_QNX
106        #define OS "QNX"ARCH
107        #define OSID quint8(21)
108#elif defined Q_OS_RELIANT
109        #define OS "Reliant UNIX"ARCH
110        #define OSID quint8(22)
111#elif defined Q_OS_SCO
112        #define OS "SCO OpenServer 5"ARCH
113        #define OSID quint8(23)
114#elif defined Q_OS_SOLARIS
115        #define OS "Sun Solaris"ARCH
116        #define OSID quint8(24)
117#elif defined Q_OS_ULTRIX
118        #define OS "DEC Ultrix"ARCH
119        #define OSID quint8(25)
120#elif defined Q_OS_UNIX
121        #define OS "UNIX BSD/SYSV"ARCH
122        #define OSID quint8(26)
123#elif defined Q_OS_UNIXWARE
124        #define OS "UnixWare 7/Open UNIX 8"ARCH
125        #define OSID quint8(27)
126#elif defined Q_OS_WIN32
127        #define OS "Windows"ARCH
128        #define OSID quint8(28)
129#elif defined Q_OS_WINCE
130        #define OS "Windows CE"ARCH
131        #define OSID quint8(29)
132#else
133        #define OS "Unknown"ARCH
134        #define OSID quint8(255)
135#endif // OS
136
137#endif // OS_H
Note: See TracBrowser for help on using the repository browser.