2017-09-19 04:34:08 -04:00
|
|
|
# This is the top-level CMakeLists.txt file for the Cuberite project
|
2016-07-21 05:46:31 -04:00
|
|
|
#
|
|
|
|
# Use CMake to generate the build files for your platform
|
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
cmake_minimum_required (VERSION 3.13)
|
2020-05-21 18:52:19 -04:00
|
|
|
cmake_policy(VERSION 3.13...3.17.2)
|
2020-05-16 15:59:10 -04:00
|
|
|
project(
|
|
|
|
Cuberite
|
|
|
|
DESCRIPTION "A lightweight, fast and extensible game server for Minecraft"
|
|
|
|
HOMEPAGE_URL "https://cuberite.org"
|
|
|
|
LANGUAGES C CXX
|
|
|
|
)
|
|
|
|
|
|
|
|
option(BUILD_TOOLS "Sets up additional executables to be built along with the server" OFF)
|
2021-01-31 10:09:59 -05:00
|
|
|
option(BUILD_UNSTABLE_TOOLS "Sets up yet more executables to be built, these can be broken and generally are obsolete" OFF)
|
|
|
|
option(NO_NATIVE_OPTIMIZATION "Disables CPU-specific optimisations for the current machine, allows use on other CPUs of the same platform" OFF)
|
2020-05-16 15:59:10 -04:00
|
|
|
option(PRECOMPILE_HEADERS "Enable precompiled headers for faster builds" ON)
|
|
|
|
option(SELF_TEST "Enables testing code to be built" OFF)
|
|
|
|
option(UNITY_BUILDS "Enables source aggregation for faster builds" ON)
|
2021-01-31 10:09:59 -05:00
|
|
|
option(WHOLE_PROGRAM_OPTIMISATION "Enables link time optimisation for Release" ON)
|
2015-06-03 04:40:01 -04:00
|
|
|
|
2020-05-27 18:48:49 -04:00
|
|
|
include("CMake/AddDependencies.cmake")
|
|
|
|
include("CMake/Fixups.cmake")
|
|
|
|
include("CMake/GenerateBindings.cmake")
|
|
|
|
include("CMake/GroupSources.cmake")
|
|
|
|
include("SetFlags.cmake")
|
|
|
|
|
|
|
|
# Add build timestamp and details:
|
|
|
|
include("CMake/StampBuild.cmake")
|
|
|
|
|
|
|
|
# We need C++17 features:
|
2020-05-09 11:51:54 -04:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
2020-05-31 15:26:50 -04:00
|
|
|
# The need for speed (in Release):
|
|
|
|
if(WHOLE_PROGRAM_OPTIMISATION)
|
|
|
|
include(CheckIPOSupported)
|
|
|
|
check_ipo_supported(RESULT IPO_SUPPORTED)
|
|
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE ${IPO_SUPPORTED})
|
2016-07-17 10:23:29 -04:00
|
|
|
endif()
|
|
|
|
|
2020-05-27 18:48:49 -04:00
|
|
|
# Static CRT:
|
2020-05-16 15:59:10 -04:00
|
|
|
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
2016-07-17 10:23:29 -04:00
|
|
|
|
2020-07-06 19:04:32 -04:00
|
|
|
# TODO: set_build_stamp()
|
|
|
|
set_global_flags()
|
|
|
|
build_dependencies()
|
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
add_executable(${CMAKE_PROJECT_NAME})
|
|
|
|
add_subdirectory(src)
|
2015-11-04 16:32:11 -05:00
|
|
|
|
2020-07-06 19:04:32 -04:00
|
|
|
set_exe_flags(${CMAKE_PROJECT_NAME})
|
|
|
|
link_dependencies(${CMAKE_PROJECT_NAME})
|
2020-05-27 18:48:49 -04:00
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
# Set the startup project to Cuberite, and the debugger dir:
|
|
|
|
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${CMAKE_PROJECT_NAME})
|
|
|
|
set_target_properties(${CMAKE_PROJECT_NAME} PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/Server")
|
2015-01-09 14:38:25 -05:00
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
# Enable PCH and jumbo builds on supporting CMake:
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.16")
|
|
|
|
if (PRECOMPILE_HEADERS)
|
|
|
|
target_precompile_headers(${CMAKE_PROJECT_NAME} PRIVATE src/Globals.h)
|
|
|
|
endif()
|
2018-01-03 12:41:16 -05:00
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
set_target_properties(${CMAKE_PROJECT_NAME} PROPERTIES UNITY_BUILD ${UNITY_BUILDS})
|
2020-05-16 15:59:10 -04:00
|
|
|
else()
|
2021-01-02 06:35:40 -05:00
|
|
|
message(WARNING "Precompiled headers for FASTER BUILDS not enabled, upgrade to CMake 3.16 or newer!")
|
2020-05-16 15:59:10 -04:00
|
|
|
endif()
|
2013-12-10 16:39:20 -05:00
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
# Selectively disable warnings in the level where the target is created:
|
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
# Generated file has old-style casts, missing prototypes, and deprecated declarations
|
2020-10-15 05:35:44 -04:00
|
|
|
set_source_files_properties("${PROJECT_SOURCE_DIR}/src/Bindings/Bindings.cpp" PROPERTIES COMPILE_OPTIONS -Wno-everything)
|
2014-01-22 16:19:33 -05:00
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
# File failed to follow NHS guidelines on handwashing and has not maintained good hygiene
|
2020-10-15 05:35:44 -04:00
|
|
|
set_source_files_properties("${PROJECT_SOURCE_DIR}/src/IniFile.cpp" PROPERTIES COMPILE_OPTIONS -Wno-header-hygiene)
|
2021-02-09 08:01:13 -05:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
set_source_files_properties("${PROJECT_SOURCE_DIR}/src/Bindings/Bindings.cpp" PROPERTIES COMPILE_OPTIONS -w)
|
2017-08-22 15:56:32 -04:00
|
|
|
endif()
|
|
|
|
|
2021-01-31 10:09:59 -05:00
|
|
|
if(BUILD_TOOLS)
|
|
|
|
message(STATUS "Building tools")
|
2020-05-21 18:52:19 -04:00
|
|
|
add_subdirectory(Tools/GrownBiomeGenVisualiser/)
|
|
|
|
add_subdirectory(Tools/MCADefrag/)
|
|
|
|
add_subdirectory(Tools/NoiseSpeedTest/)
|
|
|
|
add_subdirectory(Tools/ProtoProxy/)
|
|
|
|
endif()
|
|
|
|
|
2021-01-31 10:09:59 -05:00
|
|
|
if(BUILD_UNSTABLE_TOOLS)
|
|
|
|
message(STATUS "Building unstable tools")
|
2020-05-21 18:52:19 -04:00
|
|
|
add_subdirectory(Tools/GeneratorPerformanceTest/)
|
|
|
|
endif()
|
|
|
|
|
2020-05-16 15:59:10 -04:00
|
|
|
# Self Test Mode enables extra checks at startup
|
2021-01-31 10:09:59 -05:00
|
|
|
if(SELF_TEST)
|
|
|
|
message(STATUS "Tests enabled")
|
2014-04-27 15:25:03 -04:00
|
|
|
enable_testing()
|
2016-11-07 17:15:07 -05:00
|
|
|
add_subdirectory(tests)
|
2014-04-27 15:25:03 -04:00
|
|
|
endif()
|
|
|
|
|
2020-05-27 18:48:49 -04:00
|
|
|
emit_fixups()
|
|
|
|
group_sources()
|
|
|
|
enable_bindings_generation()
|