aboutsummaryrefslogtreecommitdiff
path: root/cmake/options.cmake
blob: 1e7374d1287ab62f5776c9c60a5c167b24bd83d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

option(SERVERS          "Build worldserver and authserver"                            1)
option(SCRIPTS          "Build core with scripts included"                            1)
option(TOOLS            "Build map/vmap extraction/assembler tools"                   0)
option(USE_SCRIPTPCH    "Use precompiled headers when compiling scripts"              1)
option(USE_COREPCH      "Use precompiled headers when compiling servers"              1)
option(USE_SFMT         "Use SFMT as random numbergenerator"                          0)
if(WIN32)
  option(EXTERNAL_MYSQL   "Use your own installed MySQL instead of the internal one"  0)
else(WIN32)
  set(EXTERNAL_MYSQL 0)
endif(WIN32)
option(WITH_WARNINGS    "Show all warnings during compile"                            1)
option(WITH_COREDEBUG   "Include additional debug-code in core"                       0)
option(WITH_SQL         "Copy SQL files during installation"                          0)