aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorclick <none@none>2010-07-29 21:08:16 +0200
committerclick <none@none>2010-07-29 21:08:16 +0200
commitf213f2c7d9bdafece27e198ba0bdf74ec258ede6 (patch)
tree4c46a3fa9fa19dde856c399a25c959b1bda74c6f /CMakeLists.txt
parentc44b601ac78c429c7e4800c50b19c257dae0aefb (diff)
Buildsystem/CMake: Include core/script headerfiles in generated MSVC-projects.
- Still "work in progress", as in missing filters and MSVC folder layouts. - external libraries not fully "headerified" (not really required) --HG-- branch : trunk
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt18
1 files changed, 5 insertions, 13 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 346501166c5..cde22deeaf4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-project(Trinity)
+project(TrinityCore)
# CMake policies
cmake_minimum_required(VERSION 2.6)
@@ -80,8 +80,7 @@ add_custom_target(uninstall
)
endif()
-option(AUTHSERVER "Build authserver" 1)
-option(WORLDSERVER "Build worldserver" 1)
+option(SERVERS "Build servers" 1)
option(CLI "With CLI" 1)
option(DEBUG "Debug mode" 0)
option(PCH "Use precompiled headers" 1)
@@ -159,16 +158,10 @@ message("* Install libraries to : ${LIBSDIR}")
message("* Install configs to : ${CONF_DIR}")
message("")
-if( AUTHSERVER )
- message("* Build authserver : Yes (default)")
+if( SERVERS )
+ message("* Build server : Yes (default)")
else()
- message("* Build authserver : No")
-endif()
-
-if( WORLDSERVER )
- message("* Build worldserver : Yes (default)")
-else()
- message("* Build worldserver : No")
+ message("* Build server : No")
endif()
if( SCRIPTS )
@@ -260,4 +253,3 @@ add_subdirectory(src)
if( SQL )
add_subdirectory(sql)
endif()
-