mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
* Added an option to autosearch for your own installed MySQL as before. Note that default setting is to use the internal MySQL. * You can now build 32-bit even if your MySQL is x64 and vice versa. * Recommended MySQL server version for use with provided MySQL client sources is 5.1.x. * If your server version is different, let CMake autofind and use it instead (check EXTERNAL_MYSQL option) --HG-- branch : trunk
90 lines
2.0 KiB
CMake
90 lines
2.0 KiB
CMake
# output generic information about the core and buildtype chosen
|
|
|
|
message("")
|
|
message("* TrinityCore revision : ${HG_REVISION}")
|
|
if( UNIX )
|
|
message("* Build binaries in : ${CMAKE_BUILD_TYPE} mode")
|
|
endif()
|
|
message("")
|
|
|
|
# output information about installation-directories and locations
|
|
|
|
message("* Install core to : ${CMAKE_INSTALL_PREFIX}")
|
|
if( UNIX )
|
|
message("* Install libraries to : ${LIBSDIR}")
|
|
message("* Install configs to : ${CONF_DIR}")
|
|
endif()
|
|
message("")
|
|
|
|
# Show infomation about the options selected during configuration
|
|
|
|
if( SERVERS )
|
|
message("* Build world/auth : Yes (default)")
|
|
else()
|
|
message("* Build world/authserver : No")
|
|
endif()
|
|
|
|
if( SCRIPTS )
|
|
message("* Build with scripts : Yes (default)")
|
|
add_definitions(-DSCRIPTS)
|
|
else()
|
|
message("* Build with scripts : No")
|
|
set(USE_SCRIPTPCH 0)
|
|
endif()
|
|
|
|
if( TOOLS )
|
|
message("* Build map/vmap tools : Yes")
|
|
else()
|
|
message("* Build map/vmap tools : No (default)")
|
|
endif()
|
|
|
|
if( WITH_SQL )
|
|
message("* Install SQL-files : Yes")
|
|
else()
|
|
message("* Install SQL-files : No (default)")
|
|
endif()
|
|
|
|
if( USE_COREPCH )
|
|
message("* Build core w/PCH : Yes (default)")
|
|
else()
|
|
message("* Build core w/PCH : No")
|
|
endif()
|
|
|
|
if( USE_SCRIPTPCH )
|
|
message("* Build scripts w/PCH : Yes (default)")
|
|
else()
|
|
message("* Build scripts w/PCH : No")
|
|
endif()
|
|
|
|
if( USE_SFMT )
|
|
message("* Use SFMT for RNG : Yes")
|
|
add_definitions(-DUSE_SFMT_FOR_RNG)
|
|
else()
|
|
message("* Use SFMT for RNG : No (default)")
|
|
endif()
|
|
|
|
if( WIN32 )
|
|
if( EXTERNAL_MYSQL )
|
|
message("* Use external MySQL : Yes")
|
|
add_definitions(-DUSE_SFMT_FOR_RNG)
|
|
else()
|
|
message("* Use external MySQL : No (default)")
|
|
endif()
|
|
endif( WIN32 )
|
|
|
|
if( WITH_WARNINGS )
|
|
message("* Show all warnings : Yes")
|
|
else()
|
|
message("* Show compile-warnings : No (default)")
|
|
endif()
|
|
|
|
if( WITH_COREDEBUG )
|
|
message("* Use coreside debug : Yes")
|
|
add_definitions(-DTRINITY_DEBUG)
|
|
else()
|
|
message("* Use coreside debug : No (default)")
|
|
endif()
|
|
|
|
message("")
|
|
|