azerothcore-wotlk/CMakeLists.txt

178 lines
4.6 KiB
CMake
Raw Normal View History

#
# This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
2016-06-26 10:39:44 +02:00
#
# 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.
2016-06-26 10:39:44 +02:00
#
# 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.
#
2016-06-26 10:39:44 +02:00
# Require version Cmake
cmake_minimum_required(VERSION 3.16...3.22)
message(STATUS "CMake version: ${CMAKE_VERSION}")
2016-06-26 10:39:44 +02:00
# CMake policies (can not be handled elsewhere)
cmake_policy(SET CMP0005 NEW)
if (POLICY CMP0153)
cmake_policy(SET CMP0153 OLD)
endif()
2016-06-26 10:39:44 +02:00
2020-12-07 21:50:45 +01:00
# Set projectname (must be done AFTER setting configurationtypes)
project(AzerothCore VERSION 3.0.0 LANGUAGES CXX C)
2016-06-26 10:39:44 +02:00
# add this options before PROJECT keyword
set(CMAKE_DISABLE_SOURCE_CHANGES ON)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
# Set RPATH-handing (CMake parameters)
set(CMAKE_SKIP_BUILD_RPATH 0)
set(CMAKE_BUILD_WITH_INSTALL_RPATH 0)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH 1)
2016-08-19 09:29:26 +02:00
set(AC_PATH_ROOT "${CMAKE_SOURCE_DIR}")
2016-06-26 10:39:44 +02:00
# set macro-directory
list(APPEND CMAKE_MODULE_PATH
"${CMAKE_SOURCE_DIR}/src/cmake/macros")
2016-06-26 10:39:44 +02:00
include(CheckCXXSourceRuns)
include(CheckIncludeFiles)
include(ConfigureScripts)
include(ConfigureModules)
include(ConfigureApplications)
include(ConfigureTools)
2016-06-26 10:39:44 +02:00
# some utils for cmake
Feat(Docker/bash): docker-compose system rework (#4488) ## ⚠️ATTENTION! ⚠️ Upgrading procedure: **Database:** After this PR will be merged you need to backup your DB first (you can use the db-assembler or any mysql client to generate the dump) and restore it after. The reason is that we use now docker named volumes instead of binded ones to improve performance. **Conf & client data**: if you use the default configuration, both the etc and the data folder are now available inside the **/env/docker**. Finally, you can cleanup the /docker folder previously used by our system. ## Changes Proposed: This PR will implement the [devcontainer ](https://code.visualstudio.com/docs/remote/containers) feature for VSCode. Allowing us to develop and debug directly within the container in the same way on all OSes. * Implemented support for vscode dev-container feature by remote-extension suite * Docker performance optimizations for MacOS and non-linux hosts * Bash system improvements * Implemented first command using Deno runtime environment (typescript) and [commander.js] * Implemented wait mechanism for db_assembler * Implemented db migration command * possibility to run the authserver and worldserver with GDB using the integrated simple-restarter * Implemented docker multi-stage mechanism to use one single Dockerfile for all the services * client-data downloader now creates a placeholder to avoid downloading the same version of data files multiple times * deployment of pre-compiled docker images on [docker hub](https://hub.docker.com/u/acore), you can test them [here](https://github.com/azerothcore/acore-docker)
2021-04-22 09:57:05 +02:00
include(deps/acore/cmake-utils/utils.cmake)
include(src/cmake/ac_macros.cmake)
2016-06-26 10:39:44 +02:00
# set default buildoptions and print them
include(conf/dist/config.cmake)
# load custom configurations for cmake if exists
2018-07-29 00:27:38 +08:00
if(EXISTS "${CMAKE_SOURCE_DIR}/conf/config.cmake")
include(conf/config.cmake)
endif()
#
# Loading dyn modules
#
# add modules and dependencies
CU_SUBDIRLIST(sub_DIRS "${CMAKE_SOURCE_DIR}/modules" FALSE FALSE)
FOREACH(subdir ${sub_DIRS})
get_filename_component(MODULENAME ${subdir} NAME)
if (";${DISABLED_AC_MODULES};" MATCHES ";${MODULENAME};")
continue()
endif()
STRING(REPLACE "${CMAKE_SOURCE_DIR}/" "" subdir_rel ${subdir})
if(EXISTS "${subdir}/CMakeLists.txt")
add_subdirectory("${subdir_rel}")
endif()
ENDFOREACH()
CU_RUN_HOOK("AFTER_LOAD_CONF")
# build in Release-mode by default if not explicitly set
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
endif()
2016-06-26 10:39:44 +02:00
# turn off PCH totally if enabled (hidden setting, mainly for devs)
if( NOPCH )
set(USE_COREPCH 0)
set(USE_SCRIPTPCH 0)
2016-06-26 10:39:44 +02:00
endif()
include(ConfigureBaseTargets)
2016-06-26 10:39:44 +02:00
include(CheckPlatform)
include(GroupSources)
include(AutoCollect)
include(ConfigInstall)
2016-06-26 10:39:44 +02:00
CU_RUN_HOOK("AFTER_LOAD_CMAKE_MODULES")
2016-06-26 10:39:44 +02:00
find_package(PCHSupport)
find_package(MySQL REQUIRED)
2016-06-26 10:39:44 +02:00
if(UNIX AND WITH_PERFTOOLS)
find_package(Gperftools)
2016-06-26 10:39:44 +02:00
endif()
2016-08-09 16:09:37 +02:00
if(NOT WITHOUT_GIT)
find_package(Git)
2016-08-09 16:09:37 +02:00
endif()
2016-06-26 10:39:44 +02:00
# Find revision ID and hash of the sourcetree
include(src/cmake/genrev.cmake)
2016-06-26 10:39:44 +02:00
# print out the results before continuing
include(src/cmake/showoptions.cmake)
2016-06-26 10:39:44 +02:00
2016-08-23 12:11:46 +02:00
#
# Loading framework
#
2017-10-13 19:22:30 +02:00
add_subdirectory(deps)
add_subdirectory(src/common)
2016-08-23 12:11:46 +02:00
#
# Loading application sources
#
CU_RUN_HOOK("BEFORE_SRC_LOAD")
2016-06-26 10:39:44 +02:00
# add core sources
add_subdirectory(src)
if (BUILD_APPLICATION_WORLDSERVER)
# add modules sources
add_subdirectory(modules)
endif()
CU_RUN_HOOK("AFTER_SRC_LOAD")
if (BUILD_TESTING AND BUILD_APPLICATION_WORLDSERVER)
2020-08-18 16:34:45 +02:00
# we use these flags to get code coverage
set(UNIT_TEST_CXX_FLAGS "-fprofile-arcs -ftest-coverage -fno-inline")
# enable additional flags for GCC.
if ( CMAKE_CXX_COMPILER_ID MATCHES GNU )
set(UNIT_TEST_CXX_FLAGS "${UNIT_TEST_CXX_FLAGS} -fno-inline-small-functions -fno-default-inline")
endif()
2020-08-18 16:34:45 +02:00
message("Unit tests code coverage: enabling ${UNIT_TEST_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${UNIT_TEST_CXX_FLAGS}")
include(src/cmake/googletest.cmake)
fetch_googletest(
${PROJECT_SOURCE_DIR}/src/cmake
${PROJECT_BINARY_DIR}/googletest
)
enable_testing()
add_subdirectory(src/test)
2020-08-18 16:34:45 +02:00
add_custom_target(coverage DEPENDS coverage_command)
add_custom_command(OUTPUT coverage_command
# Run unit tests.
COMMAND ctest
# Run the graphical front-end for code coverage.
COMMAND lcov --directory src --capture --output-file coverage.info
COMMAND lcov --remove coverage.info '/usr/*' '${CMAKE_BINARY_DIR}/googletest/*' '${CMAKE_CURRENT_SOURCE_DIR}/src/test/*' --output-file coverage.info
COMMAND genhtml -o ${CMAKE_CURRENT_SOURCE_DIR}/coverage-report coverage.info
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
)
endif()