2014-04-27 15:25:03 -04:00
|
|
|
cmake_minimum_required (VERSION 2.8.2)
|
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)
|
|
|
|
|
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
|
|
|
|
if(DEFINED ENV{TRAVIS_MCSERVER_BUILD_TYPE})
|
|
|
|
message("Setting build type to $ENV{TRAVIS_MCSERVER_BUILD_TYPE}")
|
|
|
|
set(CMAKE_BUILD_TYPE $ENV{TRAVIS_MCSERVER_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()
|
|
|
|
|
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})
|
|
|
|
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})
|
|
|
|
add_subdirectory(Tools/GeneratorPerformanceTest/)
|
|
|
|
endif()
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
|
2013-12-28 16:46:23 -05:00
|
|
|
project (MCServer)
|
|
|
|
|
2013-12-28 10:03:57 -05:00
|
|
|
# Include all the libraries:
|
2013-12-10 13:41:43 -05:00
|
|
|
add_subdirectory(lib/inifile/)
|
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/)
|
2013-12-18 19:52:52 -05:00
|
|
|
add_subdirectory(lib/expat/)
|
|
|
|
add_subdirectory(lib/luaexpat/)
|
2013-12-18 19:55:01 -05:00
|
|
|
add_subdirectory(lib/md5/)
|
2013-12-10 16:39:20 -05:00
|
|
|
|
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)
|
2014-02-16 07:30:45 -05:00
|
|
|
include(lib/polarssl.cmake)
|
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})
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory (tests)
|
|
|
|
endif()
|
|
|
|
|