hedgewars/config.inc.in
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 Aug 2018 05:46:33 +0200
changeset 13710 0da36902e5b6
parent 11046 47a8c19ecb60
permissions -rw-r--r--
Space Invasion: Continue playing rounds in case the teams are tied at the end Rules in case of a tie: 1) Eliminate all teams not tied for the lead 2) Play another round with the remaining teams 3) Check for the winner again at the end of that round. If there's another tie, repeat the procedure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     1
(*
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10747
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     4
 *
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     8
 *
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    12
 * GNU General Public License for more details.
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    13
 *
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    14
 * You should have received a copy of the GNU General Public License
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10080
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    17
 *)
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    18
5125
sheepluva
parents: 4976
diff changeset
    19
(*
sheepluva
parents: 4976
diff changeset
    20
 * config.inc contains constants that are determined and set
sheepluva
parents: 4976
diff changeset
    21
 * by the build system at compile time,
sheepluva
parents: 4976
diff changeset
    22
 * based on the contents of config.inc.in
sheepluva
parents: 4976
diff changeset
    23
 *)
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    24
const cNetProtoVersion = ${HEDGEWARS_PROTO_VER};
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2924
diff changeset
    25
      cVersionString = '${HEDGEWARS_VERSION}';
8650
18807b6302c8 version variables confom to naming convention
koda
parents: 8646
diff changeset
    26
      cRevisionString = '${HEDGEWARS_REVISION}';
18807b6302c8 version variables confom to naming convention
koda
parents: 8646
diff changeset
    27
      cHashString = '${HEDGEWARS_HASH}';
8646
e31044b7fbba on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents: 8615
diff changeset
    28
      cDefaultPathPrefix = '${HEDGEWARS_FULL_DATADIR}/Data';
9996
d93fb04619ee unCORr likes PChar arrays
sheepluva
parents: 9994
diff changeset
    29
      cFontsPaths: ${FONTS_DIRS_ARRAY}