mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
289 lines
9.1 KiB
CMake
289 lines
9.1 KiB
CMake
# Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/>
|
|
# Copyright (C) 2009-2011 MaNGOSZero <https://github.com/mangos/zero>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
# CMake policies
|
|
cmake_minimum_required(VERSION 3.1...3.20)
|
|
|
|
project(MaNGOS)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
# Allow `find_package()` to use `<PackageName>_ROOT` variable
|
|
if(${CMAKE_VERSION} VERSION_GREATER "3.11")
|
|
cmake_policy(SET CMP0074 NEW)
|
|
endif()
|
|
|
|
include(cmake/common.cmake)
|
|
include(cmake/options.cmake)
|
|
include(cmake/platform/detect_platform.cmake)
|
|
|
|
# Force out-of-source build
|
|
string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" BUILDING_IN_SOURCE)
|
|
if(BUILDING_IN_SOURCE)
|
|
message(FATAL_ERROR
|
|
"This project requires an out of source build. Remove the file 'CMakeCache.txt' found in this directory before continuing, create a separate build directory and run 'cmake <srcs> [options]' from there."
|
|
)
|
|
endif()
|
|
|
|
find_package(Git)
|
|
|
|
# Find out what system we use to include the needed libs
|
|
if(WIN32)
|
|
if(PLATFORM MATCHES X86) # 32-bit
|
|
set(DEP_ARCH win32)
|
|
else() # 64-bit
|
|
set(DEP_ARCH x64)
|
|
endif()
|
|
endif()
|
|
|
|
# Set up the install-prefix
|
|
if(CMAKE_INSTALL_PREFIX STREQUAL "/usr/local")
|
|
get_filename_component(PREFIX_ABSOLUTE "../server" ABSOLUTE)
|
|
set(CMAKE_INSTALL_PREFIX ${PREFIX_ABSOLUTE} CACHE PATH "Install path prefix." FORCE)
|
|
endif()
|
|
|
|
if(PREFIX)
|
|
if(!WIN32)
|
|
string(REGEX REPLACE "^~" "$ENV{HOME}" PREFIX ${PREFIX})
|
|
endif()
|
|
get_filename_component(PREFIX_ABSOLUTE ${PREFIX} ABSOLUTE)
|
|
set(CMAKE_INSTALL_PREFIX ${PREFIX} CACHE PATH "Install path prefix." FORCE)
|
|
else()
|
|
set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE PATH "Install path prefix.")
|
|
endif()
|
|
|
|
# If win32 put it in the bin dir not lib
|
|
if(WIN32)
|
|
set(BIN_DIR ${CMAKE_INSTALL_PREFIX})
|
|
set(CONF_DIR ${CMAKE_INSTALL_PREFIX})
|
|
set(LIBS_DIR ${CMAKE_INSTALL_PREFIX})
|
|
else()
|
|
set(BIN_DIR ${CMAKE_INSTALL_PREFIX}/bin)
|
|
set(CONF_DIR ${CMAKE_INSTALL_PREFIX}/etc CACHE PATH "Set custom configuration directory")
|
|
set(LIBS_DIR ${CMAKE_INSTALL_PREFIX}/lib)
|
|
endif()
|
|
|
|
# Set RPATH-handing (CMake parameters)
|
|
set(CMAKE_SKIP_BUILD_RPATH OFF)
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH OFF)
|
|
set(CMAKE_INSTALL_RPATH ${LIBS_DIR})
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH ON)
|
|
|
|
# Find needed packages and if necessary abort if something important is missing
|
|
|
|
if (ENABLE_MAILSENDER)
|
|
set(REQUIRES_LIBCURL ON)
|
|
else()
|
|
set(REQUIRES_LIBCURL OFF)
|
|
endif()
|
|
|
|
# Using the prepackages Windows dependencies from the repo
|
|
if(WIN32)
|
|
set(MYSQL_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/dep/windows/include/mysql)
|
|
set(MYSQL_LIBRARY ${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_release/libmySQL.lib)
|
|
set(MYSQL_DEBUG_LIBRARY ${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_debug/libmySQL.lib)
|
|
set(OPENSSL_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/dep/windows/include/openssl)
|
|
set(OPENSSL_LIBRARIES ${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_release/libeay32.lib)
|
|
set(OPENSSL_DEBUG_LIBRARIES ${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_debug/libeay32.lib)
|
|
set(ZLIB_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/dep/windows/include/zlib)
|
|
if (REQUIRES_LIBCURL AND MSVC)
|
|
# MinGW falls through to find_package(CURL) below, which picks up
|
|
# libcurl from the toolchain environment (e.g., MSYS2).
|
|
set(CURL_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/dep/windows/optional_dependencies/curl/include)
|
|
set(CURL_LIBRARY ${CMAKE_SOURCE_DIR}/dep/windows/optional_dependencies/curl/lib/libcurl.lib)
|
|
endif()
|
|
endif()
|
|
|
|
# *nix-specific packages
|
|
if(UNIX)
|
|
find_package(MySQL REQUIRED)
|
|
find_package(OpenSSL REQUIRED)
|
|
find_package(ZLIB REQUIRED)
|
|
endif()
|
|
|
|
if(REQUIRES_LIBCURL)
|
|
if(WIN32)
|
|
find_package(CURL) # No `REQUIRED`, since we want to print our own message.
|
|
if(NOT CURL_FOUND OR NOT CURL_VERSION_STRING)
|
|
message(FATAL_ERROR
|
|
"Your build options require CURL to be present, but it was not found.\n"
|
|
"You can find a script to automatically download CURL in dep/windows/optional_dependencies"
|
|
)
|
|
endif()
|
|
else()
|
|
find_package(CURL REQUIRED)
|
|
endif()
|
|
endif()
|
|
|
|
# Add uninstall script and target
|
|
#configure_file(
|
|
# "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
|
|
# "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
# IMMEDIATE @ONLY
|
|
#)
|
|
|
|
#add_custom_target(uninstall
|
|
# "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
#)
|
|
|
|
# Find core revision
|
|
if(NOT GIT_EXECUTABLE)
|
|
set(rev_date "1970-01-01 00:00:00 +0000")
|
|
set(rev_hash "unknown")
|
|
else()
|
|
execute_process(
|
|
COMMAND ${GIT_EXECUTABLE} rev-parse --short=20 HEAD
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
OUTPUT_VARIABLE rev_hash
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
ERROR_QUIET
|
|
)
|
|
|
|
execute_process(
|
|
COMMAND ${GIT_EXECUTABLE} show -s --format=%ci
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
OUTPUT_VARIABLE rev_date
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
ERROR_QUIET
|
|
)
|
|
|
|
if(NOT rev_hash)
|
|
# No valid ways available to find/set the revision/hash, so let's force some defaults
|
|
message(STATUS "
|
|
Could not find a proper repository signature (hash) - you may need to pull tags with git fetch -t
|
|
Continuing anyway - note that the versionstring will be set to \"unknown 1970-01-01 00:00:00 (Archived)\"")
|
|
set(rev_date "1970-01-01 00:00:00 +0000")
|
|
set(rev_hash "unknown")
|
|
endif()
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/generators/revision.h.in ${CMAKE_CURRENT_SOURCE_DIR}/src/shared/revision.h)
|
|
endif()
|
|
|
|
set(supported_build ${SUPPORTED_CLIENT_BUILD})
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/generators/Progression.h.in ${CMAKE_CURRENT_SOURCE_DIR}/src/shared/Progression.h)
|
|
|
|
# Generate migrations list
|
|
include(cmake/generators/migrations_list.h.cmake)
|
|
|
|
if(${CMAKE_VERSION} VERSION_LESS "3.16")
|
|
if(USE_PCH AND NOT PCHSupport_FOUND)
|
|
set(USE_PCH OFF CACHE BOOL
|
|
"Use precompiled headers"
|
|
FORCE)
|
|
message(WARNING
|
|
"No PCH for your system possible but USE_PCH was set to ON. Resetting it.\nUpdate to cmake 3.16 or newer to use PCH."
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
include(cmake/showoptions.cmake)
|
|
|
|
set(DEFINITIONS_RELEASE ${DEFINITIONS_RELEASE} NDEBUG)
|
|
set(DEFINITIONS_DEBUG ${DEFINITIONS_DEBUG} _DEBUG MANGOS_DEBUG)
|
|
|
|
# Some small tweaks for Visual Studio 7 and above.
|
|
if(MSVC)
|
|
# Mark 32 bit executables large address aware so they can use > 2GB address space
|
|
#if(PLATFORM MATCHES X86)
|
|
# set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LARGEADDRESSAWARE")
|
|
#endif()
|
|
|
|
set(MANGOS_CXX_FLAGS "${MANGOS_CXX_FLAGS} /bigobj")
|
|
endif()
|
|
|
|
set(CMAKE_SKIP_BUILD_RPATH FALSE)
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
|
|
set(CMAKE_INSTALL_RPATH ${LIBS_DIR})
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
if(WIN32)
|
|
install(
|
|
FILES
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_release/libeay32.dll
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_release/libmySQL.dll
|
|
DESTINATION ${LIBS_DIR}
|
|
CONFIGURATIONS Release
|
|
)
|
|
install(
|
|
FILES
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_debug/libeay32.dll
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/${DEP_ARCH}_debug/libmySQL.dll
|
|
DESTINATION ${LIBS_DIR}
|
|
CONFIGURATIONS Debug
|
|
)
|
|
if(PLATFORM MATCHES X86)
|
|
# Copy dll's Windows needs
|
|
install(
|
|
FILES
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/win32_release/dbghelp.dll
|
|
DESTINATION ${LIBS_DIR}
|
|
CONFIGURATIONS Release
|
|
)
|
|
install(
|
|
FILES
|
|
${CMAKE_SOURCE_DIR}/dep/windows/lib/win32_debug/dbghelp.dll
|
|
DESTINATION ${LIBS_DIR}
|
|
CONFIGURATIONS Debug
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(XCODE)
|
|
if(PLATFORM MATCHES X86)
|
|
set(CMAKE_OSX_ARCHITECTURES i386)
|
|
else()
|
|
set(CMAKE_OSX_ARCHITECTURES x86_64)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# Add definitions for all build types
|
|
# Don't place this above 'dep' subdirectory! Because of defines build will crash.
|
|
set(DEFINITIONS
|
|
${DEFINITIONS}
|
|
DO_MYSQL
|
|
)
|
|
|
|
if(WIN32)
|
|
set(DEFINITIONS ${DEFINITIONS} WIN32 _WIN32)
|
|
set(DEFINITIONS_RELEASE ${DEFINITIONS_RELEASE} _CRT_SECURE_NO_WARNINGS)
|
|
else()
|
|
set(DEFINITIONS ${DEFINITIONS} SYSCONFDIR="${CONF_DIR}/")
|
|
endif()
|
|
|
|
if (ENABLE_MAILSENDER)
|
|
set(DEFINITIONS ${DEFINITIONS} ENABLE_MAILSENDER)
|
|
endif()
|
|
|
|
set_property(DIRECTORY PROPERTY COMPILE_DEFINITIONS ${DEFINITIONS})
|
|
set_property(DIRECTORY APPEND PROPERTY
|
|
COMPILE_DEFINITIONS $<$<CONFIG:Debug>:${DEFINITIONS_DEBUG}>
|
|
)
|
|
set_property(DIRECTORY APPEND PROPERTY
|
|
COMPILE_DEFINITIONS $<$<CONFIG:Release>:${DEFINITIONS_RELEASE}>
|
|
)
|
|
|
|
message(STATUS "MaNGOS CXX flags : ${MANGOS_CXX_FLAGS}")
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(dep)
|
|
|
|
if (BUILD_EXTRACTORS OR BUILD_REALMMERGE)
|
|
add_subdirectory(contrib)
|
|
endif()
|