2014-09-06 11:30:04 -04:00
|
|
|
cmake_minimum_required (VERSION 2.8.7)
|
2013-12-10 13:41:43 -05:00
|
|
|
|
2013-12-28 16:46:23 -05:00
|
|
|
# Without this, the MSVC variable isn't defined for MSVC builds ( http://www.cmake.org/pipermail/cmake/2011-November/047130.html )
|
|
|
|
enable_language(CXX C)
|
|
|
|
|
2015-06-03 04:40:01 -04:00
|
|
|
# Enable the support for solution folders in MSVC
|
|
|
|
if (MSVC)
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
endif()
|
|
|
|
|
2014-03-10 16:52:13 -04:00
|
|
|
# These env variables are used for configuring Travis CI builds.
|
|
|
|
# See https://github.com/mc-server/MCServer/pull/767
|
2015-08-26 04:58:51 -04:00
|
|
|
if(DEFINED ENV{TRAVIS_CUBERITE_BUILD_TYPE})
|
|
|
|
message("Setting build type to $ENV{TRAVIS_CUBERITE_BUILD_TYPE}")
|
|
|
|
set(CMAKE_BUILD_TYPE $ENV{TRAVIS_CUBERITE_BUILD_TYPE})
|
2014-03-07 15:16:16 -05:00
|
|
|
endif()
|
|
|
|
|
2014-03-10 16:52:13 -04:00
|
|
|
if(DEFINED ENV{TRAVIS_MCSERVER_FORCE32})
|
|
|
|
set(FORCE32 $ENV{TRAVIS_MCSERVER_FORCE32})
|
2014-03-07 15:16:16 -05:00
|
|
|
endif()
|
|
|
|
|
2014-05-10 08:03:36 -04:00
|
|
|
if(DEFINED ENV{TRAVIS_BUILD_WITH_COVERAGE})
|
|
|
|
set(BUILD_WITH_COVERAGE $ENV{TRAVIS_BUILD_WITH_COVERAGE})
|
|
|
|
endif()
|
|
|
|
|
2015-08-26 04:58:51 -04:00
|
|
|
if(DEFINED ENV{CUBERITE_BUILD_ID})
|
2015-06-05 04:19:58 -04:00
|
|
|
# The build info is defined by the build system (Travis / Jenkins)
|
2015-08-26 04:58:51 -04:00
|
|
|
set(BUILD_ID $ENV{CUBERITE_BUILD_ID})
|
|
|
|
set(BUILD_SERIES_NAME $ENV{CUBERITE_BUILD_SERIES_NAME})
|
|
|
|
set(BUILD_DATETIME $ENV{CUBERITE_BUILD_DATETIME})
|
|
|
|
if(DEFINED ENV{CUBERITE_BUILD_COMMIT_ID})
|
|
|
|
set(BUILD_COMMIT_ID $ENV{CUBERITE_BUILD_COMMIT_ID})
|
2014-09-10 11:07:00 -04:00
|
|
|
else()
|
|
|
|
message("Commit id not set, attempting to determine id from git")
|
|
|
|
execute_process(
|
|
|
|
COMMAND git rev-parse HEAD
|
2015-10-09 05:15:40 -04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
2014-09-10 11:07:00 -04:00
|
|
|
RESULT_VARIABLE GIT_EXECUTED
|
2015-06-05 04:19:58 -04:00
|
|
|
OUTPUT_VARIABLE BUILD_COMMIT_ID
|
|
|
|
)
|
|
|
|
string(STRIP ${BUILD_COMMIT_ID} BUILD_COMMIT_ID)
|
2014-09-10 11:07:00 -04:00
|
|
|
if (NOT (GIT_EXECUTED EQUAL 0))
|
|
|
|
message(FATAL_ERROR "Could not identifiy git commit id")
|
|
|
|
endif()
|
|
|
|
endif()
|
2015-06-05 04:19:58 -04:00
|
|
|
else()
|
|
|
|
# This is a local build, stuff in some basic info:
|
|
|
|
set(BUILD_ID "Unknown")
|
|
|
|
set(BUILD_SERIES_NAME "local build")
|
|
|
|
execute_process(
|
|
|
|
COMMAND git rev-parse HEAD
|
2015-10-09 05:15:40 -04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
2015-06-05 04:19:58 -04:00
|
|
|
RESULT_VARIABLE GIT_EXECUTED
|
|
|
|
OUTPUT_VARIABLE BUILD_COMMIT_ID
|
|
|
|
)
|
2015-06-05 07:37:36 -04:00
|
|
|
if (NOT(GIT_EXECUTED EQUAL 0))
|
|
|
|
set(BUILD_COMMIT_ID "Unknown")
|
|
|
|
endif()
|
2015-06-05 04:19:58 -04:00
|
|
|
string(STRIP ${BUILD_COMMIT_ID} BUILD_COMMIT_ID)
|
|
|
|
execute_process(
|
|
|
|
COMMAND git log -1 --date=iso --pretty=format:%ai
|
2015-10-09 05:15:40 -04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
2015-06-05 07:37:36 -04:00
|
|
|
RESULT_VARIABLE GIT_EXECUTED
|
2015-06-05 04:19:58 -04:00
|
|
|
OUTPUT_VARIABLE BUILD_DATETIME
|
|
|
|
)
|
2015-06-05 07:37:36 -04:00
|
|
|
if (NOT(GIT_EXECUTED EQUAL 0))
|
|
|
|
set(BUILD_DATETIME "Unknown")
|
|
|
|
endif()
|
2015-06-05 04:19:58 -04:00
|
|
|
string(STRIP ${BUILD_DATETIME} BUILD_DATETIME)
|
|
|
|
|
|
|
|
# The BUILD_COMMIT_ID and BUILD_DATETIME aren't updated on each repo pull
|
|
|
|
# They are only updated when cmake re-configures the project
|
|
|
|
# Therefore mark them as "approx: "
|
|
|
|
set(BUILD_COMMIT_ID "approx: ${BUILD_COMMIT_ID}")
|
|
|
|
set(BUILD_DATETIME "approx: ${BUILD_DATETIME}")
|
2014-09-10 11:07:00 -04:00
|
|
|
endif()
|
|
|
|
|
2014-11-02 02:09:22 -05:00
|
|
|
# We need C++11 features, Visual Studio has those from VS2012, but it needs a new platform toolset for those; VS2013 supports them natively:
|
|
|
|
# Adapted from http://binglongx.wordpress.com/2013/06/28/set-non-default-platform-toolset-in-cmake/
|
|
|
|
if(MSVC OR MSVC_IDE)
|
2015-08-26 04:58:51 -04:00
|
|
|
if( MSVC_VERSION LESS 1700 ) # VC10- / VS2010-
|
|
|
|
message(FATAL_ERROR "The project requires C++11 features. "
|
|
|
|
"You need at least Visual Studio 11 (Microsoft Visual Studio 2012), "
|
|
|
|
"with Microsoft Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012).")
|
|
|
|
elseif( MSVC_VERSION EQUAL 1700 ) # VC11 / VS2012
|
|
|
|
message( "VC11: using Microsoft Visual Studio 2012 "
|
|
|
|
"with Microsoft Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012)" )
|
|
|
|
set(CMAKE_GENERATOR_TOOLSET "v120_CTP_Nov2012" CACHE STRING "Platform Toolset" FORCE)
|
|
|
|
else() # VC12+, assuming C++11 supported.
|
|
|
|
endif()
|
2014-11-02 02:09:22 -05:00
|
|
|
endif()
|
|
|
|
|
2015-05-23 09:36:45 -04:00
|
|
|
set(BUILD_TOOLS OFF CACHE BOOL "")
|
|
|
|
set(SELF_TEST OFF CACHE BOOL "")
|
|
|
|
|
2014-02-16 08:55:37 -05:00
|
|
|
# This has to be done before any flags have been set up.
|
2014-02-16 06:37:31 -05:00
|
|
|
if(${BUILD_TOOLS})
|
2015-05-03 04:01:19 -04:00
|
|
|
message("Building tools")
|
2014-02-16 06:37:31 -05:00
|
|
|
add_subdirectory(Tools/MCADefrag/)
|
2014-02-16 07:30:45 -05:00
|
|
|
add_subdirectory(Tools/ProtoProxy/)
|
2014-02-16 06:37:31 -05:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${BUILD_UNSTABLE_TOOLS})
|
2015-05-03 04:01:19 -04:00
|
|
|
message("Building unstable tools")
|
2014-02-16 06:37:31 -05:00
|
|
|
add_subdirectory(Tools/GeneratorPerformanceTest/)
|
|
|
|
endif()
|
|
|
|
|
2015-06-01 18:26:57 -04:00
|
|
|
include(CheckCXXCompilerFlag)
|
2014-02-15 18:17:58 -05:00
|
|
|
include(SetFlags.cmake)
|
|
|
|
set_flags()
|
|
|
|
set_lib_flags()
|
|
|
|
enable_profile()
|
2014-01-14 05:05:57 -05:00
|
|
|
|
2013-12-27 06:01:45 -05:00
|
|
|
# Under Windows, we need Lua as DLL; on *nix we need it linked statically:
|
|
|
|
if (WIN32)
|
|
|
|
add_definitions(-DLUA_BUILD_AS_DLL)
|
|
|
|
endif()
|
|
|
|
|
2014-01-14 05:05:57 -05:00
|
|
|
|
2013-12-27 06:01:45 -05:00
|
|
|
# The Expat library is linked in statically, make the source files aware of that:
|
2013-12-27 05:51:08 -05:00
|
|
|
add_definitions(-DXML_STATIC)
|
2013-12-21 08:45:27 -05:00
|
|
|
|
2015-05-07 16:35:02 -04:00
|
|
|
# Let Lua use additional checks on its C API. This is only compiled into Debug builds:
|
|
|
|
add_definitions(-DLUA_USE_APICHECK)
|
|
|
|
|
2014-02-05 13:10:45 -05:00
|
|
|
# Self Test Mode enables extra checks at startup
|
|
|
|
if(${SELF_TEST})
|
|
|
|
add_definitions(-DSELF_TEST)
|
|
|
|
endif()
|
2013-12-28 16:46:23 -05:00
|
|
|
|
|
|
|
|
2014-01-14 05:05:57 -05:00
|
|
|
|
2014-02-15 18:17:58 -05:00
|
|
|
|
|
|
|
|
2015-08-26 04:58:51 -04:00
|
|
|
project (Cuberite)
|
2013-12-28 16:46:23 -05:00
|
|
|
|
2014-07-28 13:59:53 -04:00
|
|
|
# Set options for SQLiteCpp, disable all their tests and lints:
|
|
|
|
set(SQLITECPP_RUN_CPPLINT OFF CACHE BOOL "Run cpplint.py tool for Google C++ StyleGuide." FORCE)
|
|
|
|
set(SQLITECPP_RUN_CPPCHECK OFF CACHE BOOL "Run cppcheck C++ static analysis tool." FORCE)
|
|
|
|
set(SQLITECPP_RUN_DOXYGEN OFF CACHE BOOL "Run Doxygen C++ documentation tool." FORCE)
|
|
|
|
set(SQLITECPP_BUILD_EXAMPLES OFF CACHE BOOL "Build examples." FORCE)
|
|
|
|
set(SQLITECPP_BUILD_TESTS OFF CACHE BOOL "Build and run tests." FORCE)
|
|
|
|
set(SQLITECPP_INTERNAL_SQLITE OFF CACHE BOOL "Add the internal SQLite3 source to the project." FORCE)
|
2015-06-06 08:22:56 -04:00
|
|
|
set(SQLITE_ENABLE_COLUMN_METADATA OFF CACHE BOOL "" FORCE)
|
2014-07-28 13:59:53 -04:00
|
|
|
|
2015-01-05 16:14:48 -05:00
|
|
|
# Set options for LibEvent, disable all their tests and benchmarks:
|
|
|
|
set(EVENT__DISABLE_OPENSSL YES CACHE BOOL "Disable OpenSSL in LibEvent" FORCE)
|
|
|
|
set(EVENT__DISABLE_BENCHMARK YES CACHE BOOL "Disable LibEvent benchmarks" FORCE)
|
|
|
|
set(EVENT__DISABLE_TESTS YES CACHE BOOL "Disable LibEvent tests" FORCE)
|
|
|
|
set(EVENT__DISABLE_REGRESS YES CACHE BOOL "Disable LibEvent regression tests" FORCE)
|
|
|
|
set(EVENT__DISABLE_SAMPLES YES CACHE BOOL "Disable LibEvent samples" FORCE)
|
|
|
|
|
2015-05-08 20:22:33 -04:00
|
|
|
# Set options for JsonCPP, disabling all of their tests
|
2015-07-09 18:43:23 -04:00
|
|
|
# Additionally, their library is output to a strange location; make sure the linker knows where to find it
|
2015-05-08 20:22:33 -04:00
|
|
|
set(JSONCPP_WITH_TESTS OFF CACHE BOOL "Compile and (for jsoncpp_check) run JsonCpp test executables")
|
|
|
|
set(JSONCPP_WITH_POST_BUILD_UNITTEST OFF CACHE BOOL "Automatically run unit-tests as a post build step")
|
|
|
|
set(JSONCPP_WITH_PKGCONFIG_SUPPORT OFF CACHE BOOL "Generate and install .pc files")
|
2015-07-09 18:43:23 -04:00
|
|
|
link_directories(lib/jsoncpp/src/lib_json)
|
2015-05-08 20:22:33 -04:00
|
|
|
|
2015-01-09 14:38:25 -05:00
|
|
|
# Check that the libraries are present:
|
|
|
|
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/SQLiteCpp/CMakeLists.txt)
|
|
|
|
message(FATAL_ERROR "SQLiteCpp is missing in folder lib/SQLiteCpp. Have you initialized the submodules / downloaded the extra libraries?")
|
|
|
|
endif()
|
|
|
|
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/polarssl/CMakeLists.txt)
|
|
|
|
message(FATAL_ERROR "PolarSSL is missing in folder lib/polarssl. Have you initialized the submodules / downloaded the extra libraries?")
|
|
|
|
endif()
|
2015-01-05 16:14:48 -05:00
|
|
|
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/libevent/CMakeLists.txt)
|
|
|
|
message(FATAL_ERROR "LibEvent is missing in folder lib/libevent. Have you initialized and updated the submodules / downloaded the extra libraries?")
|
|
|
|
endif()
|
2015-08-10 03:55:35 -04:00
|
|
|
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/jsoncpp/CMakeLists.txt)
|
|
|
|
message(FATAL_ERROR "JsonCPP is missing in folder lib/jsoncpp. Have you initialized and updated the submodules / downloaded the extra libraries?")
|
|
|
|
endif()
|
2015-01-09 14:38:25 -05:00
|
|
|
|
2013-12-28 10:03:57 -05:00
|
|
|
# Include all the libraries:
|
2013-12-10 16:39:20 -05:00
|
|
|
add_subdirectory(lib/jsoncpp/)
|
2013-12-10 18:26:55 -05:00
|
|
|
add_subdirectory(lib/zlib/)
|
2013-12-18 18:14:11 -05:00
|
|
|
add_subdirectory(lib/lua/)
|
2013-12-18 18:54:55 -05:00
|
|
|
add_subdirectory(lib/tolua++/)
|
2013-12-18 19:28:48 -05:00
|
|
|
add_subdirectory(lib/sqlite/)
|
2014-07-28 13:59:53 -04:00
|
|
|
add_subdirectory(lib/SQLiteCpp/)
|
2013-12-18 19:52:52 -05:00
|
|
|
add_subdirectory(lib/expat/)
|
|
|
|
add_subdirectory(lib/luaexpat/)
|
2015-06-03 04:42:31 -04:00
|
|
|
add_subdirectory(lib/libevent/ EXCLUDE_FROM_ALL)
|
2013-12-10 16:39:20 -05:00
|
|
|
|
2014-07-28 14:16:24 -04:00
|
|
|
# Add proper include directories so that SQLiteCpp can find SQLite3:
|
|
|
|
get_property(SQLITECPP_INCLUDES DIRECTORY "lib/SQLiteCpp/" PROPERTY INCLUDE_DIRECTORIES)
|
|
|
|
set(SQLITECPP_INCLUDES "${SQLITECPP_INCLUDES}" "${CMAKE_CURRENT_SOURCE_DIR}/lib/sqlite/")
|
|
|
|
set_property(DIRECTORY lib/SQLiteCpp/ PROPERTY INCLUDE_DIRECTORIES "${SQLITECPP_INCLUDES}")
|
2014-07-28 16:06:47 -04:00
|
|
|
set_property(TARGET SQLiteCpp PROPERTY INCLUDE_DIRECTORIES "${SQLITECPP_INCLUDES}")
|
2014-07-28 14:16:24 -04:00
|
|
|
|
2015-01-13 08:44:03 -05:00
|
|
|
# Add proper includes for LibEvent's event-config.h header:
|
|
|
|
include_directories(SYSTEM ${LIBEVENT_INCLUDE_DIRS})
|
|
|
|
|
2015-07-09 18:43:23 -04:00
|
|
|
# Prettify jsoncpp_lib_static name in VS solution explorer
|
|
|
|
set_property(TARGET jsoncpp_lib_static PROPERTY PROJECT_LABEL "jsoncpp")
|
|
|
|
|
2014-06-24 08:48:18 -04:00
|
|
|
if (WIN32)
|
|
|
|
add_subdirectory(lib/luaproxy/)
|
|
|
|
endif()
|
|
|
|
|
2014-01-22 16:19:33 -05:00
|
|
|
|
|
|
|
# We use EXCLUDE_FROM_ALL so that only the explicit dependencies are used
|
|
|
|
# (PolarSSL also has test and example programs in their CMakeLists.txt, we don't want those)
|
2015-01-11 04:43:02 -05:00
|
|
|
include(lib/polarssl.cmake EXCLUDE_FROM_ALL)
|
2014-01-22 16:19:33 -05:00
|
|
|
|
2014-02-15 18:17:58 -05:00
|
|
|
set_exe_flags()
|
2013-12-27 05:51:08 -05:00
|
|
|
|
2014-01-15 07:54:06 -05:00
|
|
|
add_subdirectory (src)
|
2013-12-10 13:41:43 -05:00
|
|
|
|
2014-04-27 15:25:03 -04:00
|
|
|
if(${SELF_TEST})
|
2015-01-11 04:43:02 -05:00
|
|
|
message("Tests enabled")
|
2014-04-27 15:25:03 -04:00
|
|
|
enable_testing()
|
|
|
|
add_subdirectory (tests)
|
|
|
|
endif()
|
|
|
|
|
2015-06-18 17:30:41 -04:00
|
|
|
# Put projects into solution folders in MSVC:
|
2015-06-03 04:40:01 -04:00
|
|
|
if (MSVC)
|
2015-06-18 17:30:41 -04:00
|
|
|
set_target_properties(
|
|
|
|
event_core
|
|
|
|
event_extra
|
|
|
|
expat
|
2015-07-09 18:43:23 -04:00
|
|
|
jsoncpp_lib_static
|
2015-06-18 17:30:41 -04:00
|
|
|
lua
|
|
|
|
luaexpat
|
|
|
|
mbedtls
|
|
|
|
sqlite
|
|
|
|
SQLiteCpp
|
|
|
|
tolualib
|
|
|
|
zlib
|
|
|
|
PROPERTIES FOLDER Lib
|
|
|
|
)
|
|
|
|
set_target_properties(
|
|
|
|
luaproxy
|
|
|
|
tolua
|
|
|
|
PROPERTIES FOLDER Support
|
|
|
|
)
|
2015-06-03 04:40:01 -04:00
|
|
|
if (${SELF_TEST})
|
2015-06-18 17:30:41 -04:00
|
|
|
set_target_properties(
|
|
|
|
Network
|
|
|
|
PROPERTIES FOLDER Lib
|
|
|
|
)
|
|
|
|
set_target_properties(
|
|
|
|
arraystocoords-exe
|
|
|
|
ChunkBuffer
|
|
|
|
coordinates-exe
|
|
|
|
copies-exe
|
|
|
|
copyblocks-exe
|
|
|
|
creatable-exe
|
|
|
|
EchoServer
|
|
|
|
Google-exe
|
|
|
|
LoadablePieces
|
|
|
|
NameLookup
|
|
|
|
PROPERTIES FOLDER Tests
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${BUILD_TOOLS})
|
|
|
|
set_target_properties(
|
|
|
|
MCADefrag
|
|
|
|
ProtoProxy
|
|
|
|
PROPERTIES FOLDER Tools
|
|
|
|
)
|
2015-06-03 04:40:01 -04:00
|
|
|
endif()
|
|
|
|
endif()
|