2015-02-28 00:05:29 +01:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
2015-04-27 16:17:10 +02:00
|
|
|
project(minetest)
|
2011-07-23 18:33:49 +02:00
|
|
|
|
2014-11-17 03:52:24 +01:00
|
|
|
INCLUDE(CheckIncludeFiles)
|
2014-02-08 15:45:09 +01:00
|
|
|
|
2015-01-19 04:30:11 +01:00
|
|
|
# Add custom SemiDebug build mode
|
|
|
|
set(CMAKE_CXX_FLAGS_SEMIDEBUG "-O1 -g -Wall -Wabi" CACHE STRING
|
|
|
|
"Flags used by the C++ compiler during semidebug builds."
|
|
|
|
FORCE
|
|
|
|
)
|
|
|
|
set(CMAKE_C_FLAGS_SEMIDEBUG "-O1 -g -Wall -pedantic" CACHE STRING
|
|
|
|
"Flags used by the C compiler during semidebug builds."
|
|
|
|
FORCE
|
|
|
|
)
|
|
|
|
mark_as_advanced(
|
|
|
|
CMAKE_CXX_FLAGS_SEMIDEBUG
|
|
|
|
CMAKE_C_FLAGS_SEMIDEBUG
|
|
|
|
)
|
|
|
|
set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" CACHE STRING
|
|
|
|
"Choose the type of build. Options are: None Debug SemiDebug RelWithDebInfo MinSizeRel."
|
|
|
|
FORCE
|
|
|
|
)
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2012-03-25 03:03:51 +02:00
|
|
|
# Set some random things default to not being visible in the GUI
|
|
|
|
mark_as_advanced(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH)
|
|
|
|
|
2012-12-14 12:30:17 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
option(ENABLE_CURL "Enable cURL support for fetching media" TRUE)
|
|
|
|
set(USE_CURL FALSE)
|
2012-12-14 12:30:17 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
if(ENABLE_CURL)
|
2012-12-17 20:57:30 +01:00
|
|
|
find_package(CURL)
|
2015-02-28 00:05:29 +01:00
|
|
|
if (CURL_FOUND)
|
|
|
|
message(STATUS "cURL support enabled.")
|
|
|
|
set(USE_CURL TRUE)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
mark_as_advanced(CLEAR CURL_LIBRARY CURL_INCLUDE_DIR)
|
|
|
|
endif()
|
2012-12-14 12:30:17 +01:00
|
|
|
|
2011-07-24 13:58:51 +02:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
option(ENABLE_GETTEXT "Use GetText for internationalization" FALSE)
|
|
|
|
set(USE_GETTEXT FALSE)
|
2011-07-22 14:42:04 +02:00
|
|
|
|
2012-03-25 03:03:51 +02:00
|
|
|
if(ENABLE_GETTEXT)
|
|
|
|
find_package(GettextLib)
|
2015-02-28 00:05:29 +01:00
|
|
|
if(GETTEXT_FOUND)
|
|
|
|
if(WIN32)
|
|
|
|
message(STATUS "GetText library: ${GETTEXT_LIBRARY}")
|
|
|
|
message(STATUS "GetText DLL: ${GETTEXT_DLL}")
|
|
|
|
message(STATUS "GetText iconv DLL: ${GETTEXT_ICONV_DLL}")
|
|
|
|
endif()
|
|
|
|
set(USE_GETTEXT TRUE)
|
|
|
|
message(STATUS "GetText enabled; locales found: ${GETTEXT_AVAILABLE_LOCALES}")
|
|
|
|
endif(GETTEXT_FOUND)
|
2012-03-25 03:03:51 +02:00
|
|
|
else()
|
2015-02-28 00:05:29 +01:00
|
|
|
mark_as_advanced(GETTEXT_ICONV_DLL GETTEXT_INCLUDE_DIR GETTEXT_LIBRARY GETTEXT_MSGFMT)
|
|
|
|
message(STATUS "GetText disabled.")
|
2012-03-25 03:03:51 +02:00
|
|
|
endif()
|
2011-07-22 14:42:04 +02:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
|
|
|
option(ENABLE_SOUND "Enable sound" TRUE)
|
|
|
|
set(USE_SOUND FALSE)
|
|
|
|
|
|
|
|
if(BUILD_CLIENT AND ENABLE_SOUND)
|
2012-03-23 11:05:17 +01:00
|
|
|
# Sound libraries
|
|
|
|
find_package(OpenAL)
|
2012-03-25 03:03:51 +02:00
|
|
|
find_package(Vorbis)
|
|
|
|
if(NOT OPENAL_FOUND)
|
|
|
|
message(STATUS "Sound enabled, but OpenAL not found!")
|
2015-02-28 00:05:29 +01:00
|
|
|
mark_as_advanced(CLEAR OPENAL_LIBRARY OPENAL_INCLUDE_DIR)
|
2012-03-25 03:03:51 +02:00
|
|
|
endif()
|
|
|
|
if(NOT VORBIS_FOUND)
|
|
|
|
message(STATUS "Sound enabled, but Vorbis libraries not found!")
|
2015-02-28 00:05:29 +01:00
|
|
|
mark_as_advanced(CLEAR OGG_INCLUDE_DIR VORBIS_INCLUDE_DIR OGG_LIBRARY VORBIS_LIBRARY VORBISFILE_LIBRARY)
|
2012-03-25 03:03:51 +02:00
|
|
|
endif()
|
|
|
|
if(OPENAL_FOUND AND VORBIS_FOUND)
|
2015-02-28 00:05:29 +01:00
|
|
|
set(USE_SOUND TRUE)
|
|
|
|
message(STATUS "Sound enabled.")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Sound enabled, but cannot be used.\n"
|
|
|
|
"To continue, either fill in the required paths or disable sound. (-DENABLE_SOUND=0)")
|
2012-03-25 03:03:51 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2012-03-25 03:03:51 +02:00
|
|
|
if(USE_SOUND)
|
|
|
|
set(sound_SRCS sound_openal.cpp)
|
|
|
|
set(SOUND_INCLUDE_DIRS
|
|
|
|
${OPENAL_INCLUDE_DIR}
|
|
|
|
${VORBIS_INCLUDE_DIR}
|
2012-03-25 21:07:34 +02:00
|
|
|
${OGG_INCLUDE_DIR}
|
2012-03-25 03:03:51 +02:00
|
|
|
)
|
|
|
|
set(SOUND_LIBRARIES
|
|
|
|
${OPENAL_LIBRARY}
|
|
|
|
${VORBIS_LIBRARIES}
|
|
|
|
)
|
|
|
|
endif()
|
2012-03-23 11:05:17 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
|
|
|
option(ENABLE_GLES "Enable OpenGL ES support" FALSE)
|
|
|
|
mark_as_advanced(ENABLE_GLES)
|
|
|
|
if(ENABLE_GLES)
|
|
|
|
find_package(OpenGLES2)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
option(ENABLE_FREETYPE "Enable FreeType2 (TrueType fonts and basic unicode support)" TRUE)
|
|
|
|
set(USE_FREETYPE FALSE)
|
|
|
|
|
2013-02-03 13:19:09 +01:00
|
|
|
if(ENABLE_FREETYPE)
|
2015-04-08 06:32:09 +02:00
|
|
|
##
|
|
|
|
## Note: FindFreetype.cmake seems to have been fixed in recent versions of
|
|
|
|
## CMake. If issues persist, re-enable this workaround specificially for the
|
|
|
|
## failing platforms.
|
|
|
|
##
|
|
|
|
# if(UNIX)
|
|
|
|
# include(FindPkgConfig)
|
|
|
|
# if(PKG_CONFIG_FOUND)
|
|
|
|
# pkg_check_modules(FREETYPE QUIET freetype2)
|
|
|
|
# if(FREETYPE_FOUND)
|
|
|
|
# SET(FREETYPE_PKGCONFIG_FOUND TRUE)
|
|
|
|
# SET(FREETYPE_LIBRARY ${FREETYPE_LIBRARIES})
|
|
|
|
# # Because CMake is idiotic
|
|
|
|
# string(REPLACE ";" " " FREETYPE_CFLAGS_STR ${FREETYPE_CFLAGS})
|
|
|
|
# string(REPLACE ";" " " FREETYPE_LDFLAGS_STR ${FREETYPE_LDFLAGS})
|
|
|
|
# endif(FREETYPE_FOUND)
|
|
|
|
# endif(PKG_CONFIG_FOUND)
|
|
|
|
# endif(UNIX)
|
|
|
|
# if(NOT FREETYPE_FOUND)
|
|
|
|
# find_package(Freetype)
|
|
|
|
# endif()
|
|
|
|
find_package(Freetype)
|
2015-02-28 00:05:29 +01:00
|
|
|
if(FREETYPE_FOUND)
|
2015-04-08 06:32:09 +02:00
|
|
|
message(STATUS "Freetype enabled.")
|
2015-02-28 00:05:29 +01:00
|
|
|
set(USE_FREETYPE TRUE)
|
|
|
|
set(CGUITTFONT_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cguittfont")
|
|
|
|
set(CGUITTFONT_LIBRARY cguittfont)
|
|
|
|
endif()
|
2013-02-03 13:19:09 +01:00
|
|
|
endif(ENABLE_FREETYPE)
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
|
|
|
find_package(Lua REQUIRED)
|
|
|
|
|
|
|
|
|
|
|
|
option(ENABLE_LEVELDB "Enable LevelDB backend" TRUE)
|
|
|
|
set(USE_LEVELDB FALSE)
|
|
|
|
|
|
|
|
if(ENABLE_LEVELDB)
|
|
|
|
find_library(LEVELDB_LIBRARY leveldb)
|
|
|
|
find_path(LEVELDB_INCLUDE_DIR db.h PATH_SUFFIXES leveldb)
|
|
|
|
if(LEVELDB_LIBRARY AND LEVELDB_INCLUDE_DIR)
|
|
|
|
set(USE_LEVELDB TRUE)
|
|
|
|
message(STATUS "LevelDB backend enabled.")
|
|
|
|
include_directories(${LEVELDB_INCLUDE_DIR})
|
|
|
|
else()
|
|
|
|
message(STATUS "LevelDB not found!")
|
|
|
|
endif()
|
|
|
|
endif(ENABLE_LEVELDB)
|
|
|
|
|
|
|
|
|
|
|
|
OPTION(ENABLE_REDIS "Enable Redis backend" TRUE)
|
|
|
|
set(USE_REDIS FALSE)
|
|
|
|
|
|
|
|
if(ENABLE_REDIS)
|
|
|
|
find_library(REDIS_LIBRARY hiredis)
|
|
|
|
find_path(REDIS_INCLUDE_DIR hiredis.h PATH_SUFFIXES hiredis)
|
|
|
|
if(REDIS_LIBRARY AND REDIS_INCLUDE_DIR)
|
|
|
|
set(USE_REDIS TRUE)
|
|
|
|
message(STATUS "Redis backend enabled.")
|
|
|
|
include_directories(${REDIS_INCLUDE_DIR})
|
|
|
|
else(REDIS_LIBRARY AND REDIS_INCLUDE_DIR)
|
|
|
|
message(STATUS "Redis not found!")
|
|
|
|
endif(REDIS_LIBRARY AND REDIS_INCLUDE_DIR)
|
|
|
|
endif(ENABLE_REDIS)
|
|
|
|
|
|
|
|
|
|
|
|
find_package(SQLite3 REQUIRED)
|
|
|
|
find_package(Json REQUIRED)
|
|
|
|
|
|
|
|
|
2011-02-15 19:53:29 +01:00
|
|
|
if(NOT MSVC)
|
2015-02-28 00:05:29 +01:00
|
|
|
set(USE_GPROF FALSE CACHE BOOL "Use -pg flag for g++")
|
2011-02-15 19:53:29 +01:00
|
|
|
endif()
|
2011-02-15 15:11:24 +01:00
|
|
|
|
2011-01-18 14:05:29 +01:00
|
|
|
# Use cmake_config.h
|
2015-02-28 00:05:29 +01:00
|
|
|
add_definitions(-DUSE_CMAKE_CONFIG_H)
|
2011-01-18 14:05:29 +01:00
|
|
|
|
2011-01-09 16:28:31 +01:00
|
|
|
if(WIN32)
|
2011-01-08 16:34:25 +01:00
|
|
|
# Windows
|
2011-02-11 15:43:26 +01:00
|
|
|
if(MSVC) # MSVC Specifics
|
2015-02-01 09:08:04 +01:00
|
|
|
set(PLATFORM_LIBS dbghelp.lib ${PLATFORM_LIBS})
|
2011-02-10 14:55:15 +01:00
|
|
|
# Surpress some useless warnings
|
|
|
|
add_definitions ( /D "_CRT_SECURE_NO_DEPRECATE" /W1 )
|
2011-02-11 15:43:26 +01:00
|
|
|
else() # Probably MinGW = GCC
|
2015-04-08 18:55:06 +02:00
|
|
|
set(PLATFORM_LIBS "")
|
2011-02-10 14:55:15 +01:00
|
|
|
endif()
|
2015-04-08 18:55:06 +02:00
|
|
|
set(PLATFORM_LIBS ws2_32.lib shlwapi.lib ${PLATFORM_LIBS})
|
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
# Zlib stuff
|
|
|
|
set(ZLIB_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/../../zlib/zlib-1.2.5"
|
|
|
|
CACHE PATH "Zlib include directory")
|
|
|
|
set(ZLIB_LIBRARIES "${PROJECT_SOURCE_DIR}/../../zlib125dll/dll32/zlibwapi.lib"
|
2011-02-15 19:53:29 +01:00
|
|
|
CACHE FILEPATH "Path to zlibwapi.lib")
|
2011-01-08 16:34:25 +01:00
|
|
|
set(ZLIB_DLL "${PROJECT_SOURCE_DIR}/../../zlib125dll/dll32/zlibwapi.dll"
|
2011-02-15 19:53:29 +01:00
|
|
|
CACHE FILEPATH "Path to zlibwapi.dll (for installation)")
|
2011-07-21 07:53:13 +02:00
|
|
|
set(IRRLICHT_SOURCE_DIR "${PROJECT_SOURCE_DIR}/../../irrlicht-1.7.2"
|
|
|
|
CACHE PATH "irrlicht dir")
|
2013-02-03 13:19:09 +01:00
|
|
|
if(USE_FREETYPE)
|
|
|
|
set(FREETYPE_INCLUDE_DIR_ft2build "${PROJECT_SOURCE_DIR}/../../freetype2/include/"
|
|
|
|
CACHE PATH "freetype include dir")
|
|
|
|
set(FREETYPE_INCLUDE_DIR_freetype2 "${PROJECT_SOURCE_DIR}/../../freetype2/include/freetype"
|
|
|
|
CACHE PATH "freetype include dir")
|
|
|
|
set(FREETYPE_LIBRARY "${PROJECT_SOURCE_DIR}/../../freetype2/objs/win32/vc2005/freetype247.lib"
|
|
|
|
CACHE FILEPATH "Path to freetype247.lib")
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2012-03-25 21:50:09 +02:00
|
|
|
if(ENABLE_SOUND)
|
|
|
|
set(OPENAL_DLL "" CACHE FILEPATH "Path to OpenAL32.dll for installation (optional)")
|
|
|
|
set(OGG_DLL "" CACHE FILEPATH "Path to libogg.dll for installation (optional)")
|
|
|
|
set(VORBIS_DLL "" CACHE FILEPATH "Path to libvorbis.dll for installation (optional)")
|
|
|
|
set(VORBISFILE_DLL "" CACHE FILEPATH "Path to libvorbisfile.dll for installation (optional)")
|
|
|
|
endif()
|
2011-01-09 16:28:31 +01:00
|
|
|
else()
|
|
|
|
# Unix probably
|
|
|
|
if(BUILD_CLIENT)
|
|
|
|
find_package(X11 REQUIRED)
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
find_package(JPEG REQUIRED)
|
|
|
|
find_package(BZip2 REQUIRED)
|
|
|
|
find_package(PNG REQUIRED)
|
2011-06-18 02:14:13 +02:00
|
|
|
if(APPLE)
|
2015-02-28 00:05:29 +01:00
|
|
|
find_library(CARBON_LIB Carbon)
|
|
|
|
find_library(COCOA_LIB Cocoa)
|
|
|
|
find_library(IOKIT_LIB IOKit)
|
2011-06-18 02:14:13 +02:00
|
|
|
mark_as_advanced(
|
|
|
|
CARBON_LIB
|
|
|
|
COCOA_LIB
|
|
|
|
IOKIT_LIB
|
|
|
|
)
|
|
|
|
SET(CLIENT_PLATFORM_LIBS ${CLIENT_PLATFORM_LIBS} ${CARBON_LIB} ${COCOA_LIB} ${IOKIT_LIB})
|
|
|
|
endif(APPLE)
|
2011-01-09 16:28:31 +01:00
|
|
|
endif(BUILD_CLIENT)
|
|
|
|
find_package(ZLIB REQUIRED)
|
2014-06-26 20:30:22 +02:00
|
|
|
set(PLATFORM_LIBS -lpthread ${CMAKE_DL_LIBS})
|
|
|
|
if(APPLE)
|
|
|
|
set(PLATFORM_LIBS "-framework CoreFoundation" ${PLATFORM_LIBS})
|
|
|
|
else()
|
|
|
|
set(PLATFORM_LIBS -lrt ${PLATFORM_LIBS})
|
|
|
|
endif(APPLE)
|
2011-02-08 00:12:55 +01:00
|
|
|
#set(CLIENT_PLATFORM_LIBS -lXxf86vm)
|
2011-02-12 13:01:23 +01:00
|
|
|
# This way Xxf86vm is found on OpenBSD too
|
2011-02-14 18:42:43 +01:00
|
|
|
find_library(XXF86VM_LIBRARY Xxf86vm)
|
2012-07-23 14:23:33 +02:00
|
|
|
mark_as_advanced(XXF86VM_LIBRARY)
|
2011-06-18 02:14:13 +02:00
|
|
|
set(CLIENT_PLATFORM_LIBS ${CLIENT_PLATFORM_LIBS} ${XXF86VM_LIBRARY})
|
2011-01-08 16:34:25 +01:00
|
|
|
endif()
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
check_include_files(endian.h HAVE_ENDIAN_H)
|
2014-11-17 03:52:24 +01:00
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
configure_file(
|
2011-01-18 14:05:29 +01:00
|
|
|
"${PROJECT_SOURCE_DIR}/cmake_config.h.in"
|
|
|
|
"${PROJECT_BINARY_DIR}/cmake_config.h"
|
2011-01-08 16:34:25 +01:00
|
|
|
)
|
2011-01-08 02:10:20 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2013-09-25 04:29:07 +02:00
|
|
|
# Add a target that always rebuilds cmake_config_githash.h
|
|
|
|
add_custom_target(GenerateVersion
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-D "GENERATE_VERSION_SOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
-D "GENERATE_VERSION_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR}"
|
|
|
|
-D "VERSION_STRING=${VERSION_STRING}"
|
2015-05-05 00:46:49 +02:00
|
|
|
-D "DEVELOPMENT_BUILD=${DEVELOPMENT_BUILD}"
|
2013-09-25 04:29:07 +02:00
|
|
|
-P "${CMAKE_SOURCE_DIR}/cmake/Modules/GenerateVersion.cmake"
|
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2013-09-16 05:00:01 +02:00
|
|
|
add_subdirectory(jthread)
|
2015-02-21 11:51:12 +01:00
|
|
|
add_subdirectory(network)
|
2013-05-25 00:51:02 +02:00
|
|
|
add_subdirectory(script)
|
2015-04-26 07:24:19 +02:00
|
|
|
add_subdirectory(unittest)
|
2013-05-25 00:51:02 +02:00
|
|
|
add_subdirectory(util)
|
|
|
|
|
2011-01-28 00:38:16 +01:00
|
|
|
set(common_SRCS
|
2014-09-12 00:22:05 +02:00
|
|
|
ban.cpp
|
|
|
|
cavegen.cpp
|
|
|
|
clientiface.cpp
|
|
|
|
collision.cpp
|
2011-11-27 23:45:34 +01:00
|
|
|
content_abm.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
content_mapnode.cpp
|
|
|
|
content_nodemeta.cpp
|
|
|
|
content_sao.cpp
|
|
|
|
convert_json.cpp
|
2011-11-17 01:28:46 +01:00
|
|
|
craftdef.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
database-dummy.cpp
|
|
|
|
database-leveldb.cpp
|
|
|
|
database-redis.cpp
|
|
|
|
database-sqlite3.cpp
|
|
|
|
database.cpp
|
|
|
|
debug.cpp
|
|
|
|
defaultsettings.cpp
|
|
|
|
dungeongen.cpp
|
|
|
|
emerge.cpp
|
|
|
|
environment.cpp
|
|
|
|
filesys.cpp
|
|
|
|
genericobject.cpp
|
|
|
|
gettext.cpp
|
|
|
|
httpfetch.cpp
|
|
|
|
inventory.cpp
|
|
|
|
inventorymanager.cpp
|
2012-01-12 06:10:39 +01:00
|
|
|
itemdef.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
light.cpp
|
2011-10-16 11:45:00 +02:00
|
|
|
log.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
map.cpp
|
|
|
|
mapblock.cpp
|
2011-06-25 17:12:41 +02:00
|
|
|
mapgen.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
mapgen_singlenode.cpp
|
2014-10-16 13:45:55 +02:00
|
|
|
mapgen_v5.cpp
|
2012-12-22 06:34:35 +01:00
|
|
|
mapgen_v6.cpp
|
2013-04-06 17:19:59 +02:00
|
|
|
mapgen_v7.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
mapnode.cpp
|
|
|
|
mapsector.cpp
|
2014-11-01 18:16:23 +01:00
|
|
|
mg_biome.cpp
|
|
|
|
mg_decoration.cpp
|
|
|
|
mg_ore.cpp
|
|
|
|
mg_schematic.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
mods.cpp
|
|
|
|
nameidmapping.cpp
|
|
|
|
nodedef.cpp
|
2011-04-03 15:21:06 +02:00
|
|
|
nodemetadata.cpp
|
2012-03-19 01:08:04 +01:00
|
|
|
nodetimer.cpp
|
2011-02-04 13:32:30 +01:00
|
|
|
noise.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
object_properties.cpp
|
|
|
|
pathfinder.cpp
|
|
|
|
player.cpp
|
2011-01-08 02:10:20 +01:00
|
|
|
porting.cpp
|
2015-04-01 15:01:28 +02:00
|
|
|
profiler.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
quicktune.cpp
|
|
|
|
rollback.cpp
|
|
|
|
rollback_interface.cpp
|
2011-01-08 02:10:20 +01:00
|
|
|
serialization.cpp
|
|
|
|
server.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
serverlist.cpp
|
|
|
|
serverobject.cpp
|
|
|
|
settings.cpp
|
|
|
|
socket.cpp
|
|
|
|
sound.cpp
|
2012-11-26 10:18:34 +01:00
|
|
|
staticobject.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
subgame.cpp
|
|
|
|
tool.cpp
|
|
|
|
treegen.cpp
|
|
|
|
version.cpp
|
|
|
|
voxel.cpp
|
|
|
|
voxelalgorithms.cpp
|
2015-02-21 11:51:12 +01:00
|
|
|
${common_network_SRCS}
|
2013-09-16 05:00:01 +02:00
|
|
|
${JTHREAD_SRCS}
|
2013-08-11 04:09:45 +02:00
|
|
|
${common_SCRIPT_SRCS}
|
2013-05-25 00:51:02 +02:00
|
|
|
${UTIL_SRCS}
|
2015-04-26 07:24:19 +02:00
|
|
|
${UNITTEST_SRCS}
|
2011-01-08 02:10:20 +01:00
|
|
|
)
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2014-03-02 23:49:19 +01:00
|
|
|
# This gives us the icon and file version information
|
2011-10-15 16:05:16 +02:00
|
|
|
if(WIN32)
|
2015-02-28 00:05:29 +01:00
|
|
|
set(WINRESOURCE_FILE "${CMAKE_CURRENT_SOURCE_DIR}/../misc/winresource.rc")
|
2011-10-15 16:05:16 +02:00
|
|
|
if(MINGW)
|
2012-04-02 20:01:58 +02:00
|
|
|
if(NOT CMAKE_RC_COMPILER)
|
|
|
|
set(CMAKE_RC_COMPILER "windres.exe")
|
|
|
|
endif()
|
2011-10-15 16:05:16 +02:00
|
|
|
ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/winresource_rc.o
|
2014-03-11 17:48:34 +01:00
|
|
|
COMMAND ${CMAKE_RC_COMPILER} -I${CMAKE_CURRENT_SOURCE_DIR} -I${CMAKE_CURRENT_BINARY_DIR}
|
2012-04-02 20:01:58 +02:00
|
|
|
-i${WINRESOURCE_FILE}
|
|
|
|
-o ${CMAKE_CURRENT_BINARY_DIR}/winresource_rc.o
|
2014-03-02 23:49:19 +01:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
DEPENDS ${WINRESOURCE_FILE})
|
2011-10-15 16:05:16 +02:00
|
|
|
SET(common_SRCS ${common_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/winresource_rc.o)
|
|
|
|
else(MINGW) # Probably MSVC
|
2012-04-02 20:01:58 +02:00
|
|
|
set(common_SRCS ${common_SRCS} ${WINRESOURCE_FILE})
|
2011-10-15 16:05:16 +02:00
|
|
|
endif(MINGW)
|
2011-07-30 23:39:43 +02:00
|
|
|
endif()
|
|
|
|
|
2015-02-21 11:51:12 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
# Client sources
|
2015-02-21 11:51:12 +01:00
|
|
|
if (BUILD_CLIENT)
|
|
|
|
add_subdirectory(client)
|
|
|
|
endif(BUILD_CLIENT)
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
set(client_SRCS
|
|
|
|
${client_SRCS}
|
2011-01-28 00:38:16 +01:00
|
|
|
${common_SRCS}
|
2012-03-25 03:03:51 +02:00
|
|
|
${sound_SRCS}
|
2015-02-21 11:51:12 +01:00
|
|
|
${client_network_SRCS}
|
2011-09-08 01:08:47 +02:00
|
|
|
camera.cpp
|
2011-12-03 09:01:14 +01:00
|
|
|
chat.cpp
|
2011-01-28 00:38:16 +01:00
|
|
|
client.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
clientmap.cpp
|
Rewrite client media download and support hash-based remote download
Move most of the media-related code in client.cpp into a new class
ClientMediaDownloader (clientmedia.cpp, clientmedia.h). Among other
things, this class does the following things:
- Download [remote_server][sha1] instead of [remote_server][name]. This
is to support servers that provide the same file name with different
contents.
- Initially fetch [remote_server]index.mth. This file should follow the
Minetest Hashset format (currently version 1) and contain a list of SHA1
hashes that exist on the server.
- The list of needed SHA1s is uploaded (via HTTP POST) when index.mth is
requested, so servers can optionally narrow down the list to the needs
of the client.
- If index.mth is missing (HTTP response code 404), we enter compat mode,
fetching [remote_server][name] as before this commit.
- remote_server can now contain multiple servers, separated by commas.
The downloader code attempts to split requests between the different
servers, as permitted by each server's index.mth. If one server claims
to have a file but actually doesn't (or something fails), we ask a
different server that also claims to have it.
- As before, when none of the remote servers provide a particular
file, we download it via the conventional method, i.e. using
the minetest protocol: TOSERVER_REQUEST_MEDIA / TOCLIENT_MEDIA.
- Bugfix: Every downloaded file's SHA1 is now verified against the SHA1
announced by the minetest server (before loading it and inserting it
into the file cache).
- Bugfix: Only send TOSERVER_RECEIVED_MEDIA when we actually have all
media. This should fix #863.
2013-08-29 05:22:18 +02:00
|
|
|
clientmedia.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
clientobject.cpp
|
|
|
|
clouds.cpp
|
|
|
|
content_cao.cpp
|
|
|
|
content_cso.cpp
|
|
|
|
content_mapblock.cpp
|
|
|
|
convert_json.cpp
|
|
|
|
drawscene.cpp
|
2012-02-08 11:49:24 +01:00
|
|
|
filecache.cpp
|
2014-11-23 13:40:43 +01:00
|
|
|
fontengine.cpp
|
2011-04-23 17:31:31 +02:00
|
|
|
game.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
guiChatConsole.cpp
|
2013-06-23 18:30:21 +02:00
|
|
|
guiEngine.cpp
|
|
|
|
guiFileSelectMenu.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
guiFormSpecMenu.cpp
|
|
|
|
guiKeyChangeMenu.cpp
|
|
|
|
guiPasswordChange.cpp
|
2015-03-09 14:32:11 +01:00
|
|
|
guiscalingfilter.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
guiTable.cpp
|
|
|
|
guiVolumeChange.cpp
|
|
|
|
hud.cpp
|
2015-03-09 14:32:11 +01:00
|
|
|
imagefilters.cpp
|
2014-09-12 00:22:05 +02:00
|
|
|
keycode.cpp
|
|
|
|
localplayer.cpp
|
|
|
|
main.cpp
|
|
|
|
mapblock_mesh.cpp
|
|
|
|
mesh.cpp
|
|
|
|
particles.cpp
|
|
|
|
shader.cpp
|
|
|
|
sky.cpp
|
2014-11-02 03:47:43 +01:00
|
|
|
wieldmesh.cpp
|
2015-02-28 00:05:29 +01:00
|
|
|
${client_SCRIPT_SRCS}
|
2011-01-28 00:38:16 +01:00
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
list(SORT client_SRCS)
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
# Server sources
|
2015-02-28 00:05:29 +01:00
|
|
|
set(server_SRCS
|
2011-01-28 00:38:16 +01:00
|
|
|
${common_SRCS}
|
2012-03-10 15:46:19 +01:00
|
|
|
main.cpp
|
2011-01-08 16:34:25 +01:00
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
list(SORT server_SRCS)
|
2011-01-08 16:34:25 +01:00
|
|
|
|
2011-01-08 02:10:20 +01:00
|
|
|
include_directories(
|
2011-01-08 16:34:25 +01:00
|
|
|
${PROJECT_BINARY_DIR}
|
2013-05-25 00:51:02 +02:00
|
|
|
${PROJECT_SOURCE_DIR}
|
2011-01-08 02:10:20 +01:00
|
|
|
${IRRLICHT_INCLUDE_DIR}
|
2011-01-08 16:34:25 +01:00
|
|
|
${ZLIB_INCLUDE_DIR}
|
|
|
|
${CMAKE_BUILD_TYPE}
|
2011-01-08 17:21:22 +01:00
|
|
|
${PNG_INCLUDE_DIR}
|
2011-07-20 16:51:19 +02:00
|
|
|
${GETTEXT_INCLUDE_DIR}
|
2012-03-25 03:03:51 +02:00
|
|
|
${SOUND_INCLUDE_DIRS}
|
2011-07-19 20:02:31 +02:00
|
|
|
${SQLITE3_INCLUDE_DIR}
|
2011-11-10 20:45:45 +01:00
|
|
|
${LUA_INCLUDE_DIR}
|
2013-02-21 23:00:44 +01:00
|
|
|
${JSON_INCLUDE_DIR}
|
2013-05-25 00:51:02 +02:00
|
|
|
${PROJECT_SOURCE_DIR}/script
|
2011-01-08 02:10:20 +01:00
|
|
|
)
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2013-02-03 13:19:09 +01:00
|
|
|
if(USE_FREETYPE)
|
2015-02-28 00:05:29 +01:00
|
|
|
include_directories(${FREETYPE_INCLUDE_DIRS} ${CGUITTFONT_INCLUDE_DIR})
|
|
|
|
endif()
|
2013-02-03 13:19:09 +01:00
|
|
|
|
2013-02-21 23:00:44 +01:00
|
|
|
if(USE_CURL)
|
2015-02-28 00:05:29 +01:00
|
|
|
include_directories(${CURL_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
|
2013-02-21 23:00:44 +01:00
|
|
|
|
2013-04-07 07:30:06 +02:00
|
|
|
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/bin")
|
2011-01-08 02:10:20 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
if(BUILD_CLIENT)
|
2015-04-27 16:17:10 +02:00
|
|
|
add_executable(${PROJECT_NAME} ${client_SRCS})
|
|
|
|
add_dependencies(${PROJECT_NAME} GenerateVersion)
|
2015-02-28 00:05:29 +01:00
|
|
|
set(client_LIBS
|
2015-04-27 16:17:10 +02:00
|
|
|
${PROJECT_NAME}
|
2011-01-08 16:34:25 +01:00
|
|
|
${ZLIB_LIBRARIES}
|
2014-05-25 01:14:47 +02:00
|
|
|
${IRRLICHT_LIBRARY}
|
2011-01-08 16:34:25 +01:00
|
|
|
${OPENGL_LIBRARIES}
|
|
|
|
${JPEG_LIBRARIES}
|
|
|
|
${BZIP2_LIBRARIES}
|
2011-01-08 17:21:22 +01:00
|
|
|
${PNG_LIBRARIES}
|
2014-05-25 01:14:47 +02:00
|
|
|
${X11_LIBRARIES}
|
2011-07-21 12:33:29 +02:00
|
|
|
${GETTEXT_LIBRARY}
|
2012-03-25 03:03:51 +02:00
|
|
|
${SOUND_LIBRARIES}
|
2011-07-19 20:02:31 +02:00
|
|
|
${SQLITE3_LIBRARY}
|
2011-11-10 20:45:45 +01:00
|
|
|
${LUA_LIBRARY}
|
2014-05-25 01:14:47 +02:00
|
|
|
${JSON_LIBRARY}
|
|
|
|
${OPENGLES2_LIBRARIES}
|
2011-09-23 07:48:58 +02:00
|
|
|
${PLATFORM_LIBS}
|
|
|
|
${CLIENT_PLATFORM_LIBS}
|
2011-01-08 16:34:25 +01:00
|
|
|
)
|
2014-06-26 20:30:22 +02:00
|
|
|
if(APPLE)
|
|
|
|
target_link_libraries(
|
2015-02-28 00:05:29 +01:00
|
|
|
${client_LIBS}
|
2014-06-26 20:30:22 +02:00
|
|
|
${ICONV_LIBRARY}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_link_libraries(
|
2015-02-28 00:05:29 +01:00
|
|
|
${client_LIBS}
|
2014-06-26 20:30:22 +02:00
|
|
|
)
|
|
|
|
endif()
|
2012-12-14 12:30:17 +01:00
|
|
|
if(USE_CURL)
|
|
|
|
target_link_libraries(
|
2015-04-27 16:17:10 +02:00
|
|
|
${PROJECT_NAME}
|
2012-12-14 12:30:17 +01:00
|
|
|
${CURL_LIBRARY}
|
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2013-02-03 13:19:09 +01:00
|
|
|
if(USE_FREETYPE)
|
2013-12-08 21:05:25 +01:00
|
|
|
if(FREETYPE_PKGCONFIG_FOUND)
|
2015-04-27 16:17:10 +02:00
|
|
|
set_target_properties(${PROJECT_NAME}
|
2013-12-08 21:05:25 +01:00
|
|
|
PROPERTIES
|
2014-01-03 16:15:14 +01:00
|
|
|
COMPILE_FLAGS "${FREETYPE_CFLAGS_STR}"
|
2013-12-08 21:05:25 +01:00
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2013-02-03 13:19:09 +01:00
|
|
|
target_link_libraries(
|
2015-04-27 16:17:10 +02:00
|
|
|
${PROJECT_NAME}
|
2013-02-03 13:19:09 +01:00
|
|
|
${FREETYPE_LIBRARY}
|
|
|
|
${CGUITTFONT_LIBRARY}
|
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2012-10-22 23:18:44 +02:00
|
|
|
if (USE_LEVELDB)
|
2015-04-27 16:17:10 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME} ${LEVELDB_LIBRARY})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2014-04-08 21:39:21 +02:00
|
|
|
if (USE_REDIS)
|
2015-04-27 16:17:10 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME} ${REDIS_LIBRARY})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
endif(BUILD_CLIENT)
|
2011-01-09 16:28:31 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
if(BUILD_SERVER)
|
2015-04-27 16:17:10 +02:00
|
|
|
add_executable(${PROJECT_NAME}server ${server_SRCS})
|
|
|
|
add_dependencies(${PROJECT_NAME}server GenerateVersion)
|
2011-01-08 16:34:25 +01:00
|
|
|
target_link_libraries(
|
2015-04-27 16:17:10 +02:00
|
|
|
${PROJECT_NAME}server
|
2011-01-08 16:34:25 +01:00
|
|
|
${ZLIB_LIBRARIES}
|
2011-07-19 20:02:31 +02:00
|
|
|
${SQLITE3_LIBRARY}
|
2013-02-21 23:00:44 +01:00
|
|
|
${JSON_LIBRARY}
|
2013-01-30 01:07:00 +01:00
|
|
|
${GETTEXT_LIBRARY}
|
2011-11-10 20:45:45 +01:00
|
|
|
${LUA_LIBRARY}
|
2011-09-23 07:48:58 +02:00
|
|
|
${PLATFORM_LIBS}
|
2011-01-08 16:34:25 +01:00
|
|
|
)
|
2015-04-27 16:17:10 +02:00
|
|
|
set_target_properties(${PROJECT_NAME}server PROPERTIES
|
2015-02-28 00:05:29 +01:00
|
|
|
COMPILE_DEFINITIONS "SERVER")
|
2012-10-22 23:18:44 +02:00
|
|
|
if (USE_LEVELDB)
|
2015-04-27 16:17:10 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME}server ${LEVELDB_LIBRARY})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2014-04-08 21:39:21 +02:00
|
|
|
if (USE_REDIS)
|
2015-04-27 16:17:10 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME}server ${REDIS_LIBRARY})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2013-02-21 23:00:44 +01:00
|
|
|
if(USE_CURL)
|
|
|
|
target_link_libraries(
|
2015-04-27 16:17:10 +02:00
|
|
|
${PROJECT_NAME}server
|
2013-02-21 23:00:44 +01:00
|
|
|
${CURL_LIBRARY}
|
|
|
|
)
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
endif(BUILD_SERVER)
|
2011-01-08 02:10:20 +01:00
|
|
|
|
2013-02-21 23:00:44 +01:00
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
# Set some optimizations and tweaks
|
|
|
|
|
2011-08-11 10:06:48 +02:00
|
|
|
include(CheckCXXCompilerFlag)
|
2011-08-01 20:17:32 +02:00
|
|
|
|
2011-01-08 23:49:32 +01:00
|
|
|
if(MSVC)
|
|
|
|
# Visual Studio
|
2011-01-08 16:34:25 +01:00
|
|
|
|
2011-01-08 23:49:32 +01:00
|
|
|
# EHa enables SEH exceptions (used for catching segfaults)
|
2015-01-19 04:30:11 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "/EHa /Ox /Ob2 /Oi /Ot /Oy /GL /FD /MT /GS- /arch:SSE /fp:fast /D NDEBUG /D _HAS_ITERATOR_DEBUGGING=0 /TP")
|
2011-04-04 14:34:07 +02:00
|
|
|
#set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/LTCG /NODEFAULTLIB:\"libcmtd.lib\" /NODEFAULTLIB:\"libcmt.lib\"")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/LTCG")
|
2011-01-23 16:29:15 +01:00
|
|
|
|
2015-02-01 09:08:04 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_SEMIDEBUG "/MDd /Zi /Ob0 /O1 /RTC1")
|
2015-01-19 04:30:11 +01:00
|
|
|
|
2011-01-23 16:29:15 +01:00
|
|
|
# Debug build doesn't catch exceptions by itself
|
|
|
|
# Add some optimizations because otherwise it's VERY slow
|
2015-02-01 09:08:04 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Ob0 /Od /RTC1")
|
2011-10-14 08:55:39 +02:00
|
|
|
|
|
|
|
# Flags for C files (sqlite)
|
|
|
|
# /MT = Link statically with standard library stuff
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "/O2 /Ob2 /MT")
|
2011-01-08 23:49:32 +01:00
|
|
|
else()
|
|
|
|
# Probably GCC
|
2014-06-26 20:30:22 +02:00
|
|
|
if(APPLE)
|
|
|
|
SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pagezero_size 10000 -image_base 100000000" )
|
|
|
|
endif()
|
2011-01-08 23:49:32 +01:00
|
|
|
if(WARN_ALL)
|
2011-06-02 01:59:30 +02:00
|
|
|
set(RELEASE_WARNING_FLAGS "-Wall")
|
2011-01-08 23:49:32 +01:00
|
|
|
else()
|
2011-06-02 01:59:30 +02:00
|
|
|
set(RELEASE_WARNING_FLAGS "")
|
2011-01-08 23:49:32 +01:00
|
|
|
endif()
|
2013-08-29 05:04:56 +02:00
|
|
|
|
2014-12-06 19:36:40 +01:00
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
# clang does not understand __extern_always_inline but libc headers use it
|
|
|
|
set(OTHER_FLAGS "${OTHER_FLAGS} \"-D__extern_always_inline=extern __always_inline\"")
|
|
|
|
endif()
|
|
|
|
|
2012-04-02 20:01:58 +02:00
|
|
|
if(MINGW)
|
|
|
|
set(OTHER_FLAGS "-mthreads -fexceptions")
|
|
|
|
endif()
|
|
|
|
|
2014-06-26 20:30:22 +02:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG ${RELEASE_WARNING_FLAGS} ${WARNING_FLAGS} ${OTHER_FLAGS} -ffast-math -Wall -pipe -funroll-loops")
|
2011-06-18 02:14:13 +02:00
|
|
|
if(APPLE)
|
2014-06-26 20:30:22 +02:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Os")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -fomit-frame-pointer")
|
|
|
|
endif(APPLE)
|
2015-01-19 04:30:11 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_SEMIDEBUG "-g -O1 -Wall -Wabi ${WARNING_FLAGS} ${OTHER_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "-g -O0 -Wall -Wabi ${WARNING_FLAGS} ${OTHER_FLAGS}")
|
2011-02-15 15:11:24 +01:00
|
|
|
|
|
|
|
if(USE_GPROF)
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -pg")
|
|
|
|
endif()
|
2011-01-08 23:49:32 +01:00
|
|
|
endif()
|
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
|
|
|
|
# Installation
|
2015-02-28 00:05:29 +01:00
|
|
|
|
2012-03-25 21:50:09 +02:00
|
|
|
if(WIN32)
|
|
|
|
if(USE_SOUND)
|
|
|
|
if(OPENAL_DLL)
|
|
|
|
install(FILES ${OPENAL_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
|
|
|
if(OGG_DLL)
|
|
|
|
install(FILES ${OGG_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
|
|
|
if(VORBIS_DLL)
|
|
|
|
install(FILES ${VORBIS_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
|
|
|
if(VORBISFILE_DLL)
|
|
|
|
install(FILES ${VORBISFILE_DLL} DESTINATION ${BINDIR})
|
2012-12-17 20:57:30 +01:00
|
|
|
endif()
|
2014-01-21 13:35:26 +01:00
|
|
|
endif()
|
|
|
|
if(CURL_DLL)
|
|
|
|
install(FILES ${CURL_DLL} DESTINATION ${BINDIR})
|
2014-06-29 19:36:51 +02:00
|
|
|
endif()
|
2014-07-29 10:47:38 +02:00
|
|
|
if(ZLIB_DLL)
|
2014-06-29 19:36:51 +02:00
|
|
|
install(FILES ${ZLIB_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2014-07-29 10:47:38 +02:00
|
|
|
if(ZLIBWAPI_DLL)
|
|
|
|
install(FILES ${ZLIBWAPI_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2014-06-29 19:36:51 +02:00
|
|
|
if(FREETYPE_DLL)
|
|
|
|
install(FILES ${FREETYPE_DLL} DESTINATION ${BINDIR})
|
2014-07-29 10:47:38 +02:00
|
|
|
endif()
|
2015-01-08 21:30:07 +01:00
|
|
|
if(SQLITE3_DLL)
|
|
|
|
install(FILES ${SQLITE3_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2014-07-29 10:47:38 +02:00
|
|
|
if(LEVELDB_DLL)
|
|
|
|
install(FILES ${LEVELDB_DLL} DESTINATION ${BINDIR})
|
2012-03-25 21:50:09 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
|
|
|
|
if(BUILD_CLIENT)
|
2015-04-27 16:17:10 +02:00
|
|
|
install(TARGETS ${PROJECT_NAME}
|
2015-03-10 18:29:13 +01:00
|
|
|
RUNTIME DESTINATION ${BINDIR}
|
|
|
|
LIBRARY DESTINATION ${BINDIR}
|
|
|
|
ARCHIVE DESTINATION ${BINDIR}
|
|
|
|
BUNDLE DESTINATION .
|
|
|
|
)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
install(CODE "
|
|
|
|
set(BU_CHMOD_BUNDLE_ITEMS ON)
|
|
|
|
include(BundleUtilities)
|
|
|
|
fixup_bundle(\"\${CMAKE_INSTALL_PREFIX}/${BUNDLE_PATH}\" \"\" \"\${CMAKE_INSTALL_PREFIX}/${BINDIR}\")
|
|
|
|
" COMPONENT Runtime)
|
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
|
2011-07-24 13:58:51 +02:00
|
|
|
if(USE_GETTEXT)
|
2011-07-22 09:36:17 +02:00
|
|
|
foreach(LOCALE ${GETTEXT_AVAILABLE_LOCALES})
|
|
|
|
set_mo_paths(MO_BUILD_PATH MO_DEST_PATH ${LOCALE})
|
2015-04-27 16:17:10 +02:00
|
|
|
set(MO_BUILD_PATH "${MO_BUILD_PATH}/${PROJECT_NAME}.mo")
|
2011-07-22 09:36:17 +02:00
|
|
|
install(FILES ${MO_BUILD_PATH} DESTINATION ${MO_DEST_PATH})
|
2015-02-28 00:05:29 +01:00
|
|
|
endforeach()
|
2011-07-21 14:46:14 +02:00
|
|
|
endif()
|
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
if(WIN32)
|
|
|
|
if(DEFINED IRRLICHT_DLL)
|
|
|
|
install(FILES ${IRRLICHT_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2011-07-21 12:33:29 +02:00
|
|
|
if(USE_GETTEXT)
|
2011-07-21 13:59:50 +02:00
|
|
|
if(DEFINED GETTEXT_DLL)
|
2011-07-21 12:33:29 +02:00
|
|
|
install(FILES ${GETTEXT_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2011-07-21 13:59:50 +02:00
|
|
|
if(DEFINED GETTEXT_ICONV_DLL)
|
2011-07-21 12:33:29 +02:00
|
|
|
install(FILES ${GETTEXT_ICONV_DLL} DESTINATION ${BINDIR})
|
|
|
|
endif()
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
endif()
|
|
|
|
endif(BUILD_CLIENT)
|
|
|
|
|
|
|
|
if(BUILD_SERVER)
|
2015-04-27 16:17:10 +02:00
|
|
|
install(TARGETS ${PROJECT_NAME}server DESTINATION ${BINDIR})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2011-01-08 16:34:25 +01:00
|
|
|
|
2011-07-21 07:53:13 +02:00
|
|
|
if (USE_GETTEXT)
|
2011-07-22 09:36:17 +02:00
|
|
|
set(MO_FILES)
|
2011-07-22 10:55:05 +02:00
|
|
|
|
2011-07-22 09:36:17 +02:00
|
|
|
foreach(LOCALE ${GETTEXT_AVAILABLE_LOCALES})
|
2015-04-27 16:17:10 +02:00
|
|
|
set(PO_FILE_PATH "${GETTEXT_PO_PATH}/${LOCALE}/${PROJECT_NAME}.po")
|
2011-07-24 10:19:31 +02:00
|
|
|
set_mo_paths(MO_BUILD_PATH MO_DEST_PATH ${LOCALE})
|
2015-04-27 16:17:10 +02:00
|
|
|
set(MO_FILE_PATH "${MO_BUILD_PATH}/${PROJECT_NAME}.mo")
|
2011-07-24 10:19:31 +02:00
|
|
|
|
|
|
|
add_custom_command(OUTPUT ${MO_BUILD_PATH}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${MO_BUILD_PATH}
|
|
|
|
COMMENT "mo-update [${LOCALE}]: Creating locale directory.")
|
|
|
|
|
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${MO_FILE_PATH}
|
|
|
|
COMMAND ${GETTEXT_MSGFMT} -o ${MO_FILE_PATH} ${PO_FILE_PATH}
|
|
|
|
DEPENDS ${MO_BUILD_PATH} ${PO_FILE_PATH}
|
|
|
|
WORKING_DIRECTORY "${GETTEXT_PO_PATH}/${LOCALE}"
|
|
|
|
COMMENT "mo-update [${LOCALE}]: Creating mo file."
|
|
|
|
)
|
2011-07-22 10:55:05 +02:00
|
|
|
|
2011-07-24 10:19:31 +02:00
|
|
|
set(MO_FILES ${MO_FILES} ${MO_FILE_PATH})
|
2015-02-28 00:05:29 +01:00
|
|
|
endforeach()
|
2011-07-22 09:36:17 +02:00
|
|
|
|
|
|
|
add_custom_target(translations ALL COMMENT "mo update" DEPENDS ${MO_FILES})
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
|
|
|
|
2011-07-20 16:51:19 +02:00
|
|
|
|
2011-01-08 16:34:25 +01:00
|
|
|
# Subdirectories
|
2011-01-08 02:10:20 +01:00
|
|
|
|
2013-02-03 13:19:09 +01:00
|
|
|
if (BUILD_CLIENT AND USE_FREETYPE)
|
|
|
|
add_subdirectory(cguittfont)
|
2015-02-28 00:05:29 +01:00
|
|
|
endif()
|
2013-02-21 23:00:44 +01:00
|
|
|
|