author | sheepluva |
Sun, 30 Oct 2011 23:24:36 +0100 | |
changeset 6245 | 6df227b5e4c9 |
parent 5370 | a3f87be7b09a |
child 5399 | cdef954f8aec |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004, 2011 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2599 | 19 |
{$IFDEF FPC} |
20 |
{$J+} |
|
2630 | 21 |
{$ELSE} |
22 |
{$ERROR Only Free Pascal supported!} |
|
2600 | 23 |
{$ENDIF} |
4 | 24 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2716
diff
changeset
|
25 |
{$MODE OBJFPC} |
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
2803
diff
changeset
|
26 |
{$MACRO ON} |
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
2803
diff
changeset
|
27 |
|
4850 | 28 |
{$DEFINE GLunit:=GL} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2716
diff
changeset
|
29 |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
1066
diff
changeset
|
30 |
{$IFDEF IPHONEOS} |
2599 | 31 |
{$DEFINE SDL13} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2716
diff
changeset
|
32 |
{$DEFINE HWLIBRARY} |
4347
0ddb100fea61
add a S3D_DISABLED symbol to disable/enable stereo rendering at compilation time
koda
parents:
3822
diff
changeset
|
33 |
{$DEFINE S3D_DISABLED} |
3514 | 34 |
{$DEFINE GLunit:=gles11} |
5370
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5275
diff
changeset
|
35 |
{$ELSE} |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5275
diff
changeset
|
36 |
{$DEFINE DEBUGFILE} |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5275
diff
changeset
|
37 |
//{$DEFINE TRACEAIACTIONS} |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5275
diff
changeset
|
38 |
//{$DEFINE COUNTTICKS} |
2630 | 39 |
{$ENDIF} |
40 |
||
4347
0ddb100fea61
add a S3D_DISABLED symbol to disable/enable stereo rendering at compilation time
koda
parents:
3822
diff
changeset
|
41 |
|
5048 | 42 |
//also available LUA_DISABLED |