2014-01-16 12:33:28 -05:00
|
|
|
cmake_minimum_required (VERSION 2.8.2)
|
2013-12-10 13:41:43 -05:00
|
|
|
project (MCServer)
|
|
|
|
|
|
|
|
include_directories (SYSTEM "${PROJECT_SOURCE_DIR}/../lib/")
|
2013-12-10 16:39:20 -05:00
|
|
|
include_directories (SYSTEM "${PROJECT_SOURCE_DIR}/../lib/jsoncpp/include")
|
2014-01-23 17:35:23 -05:00
|
|
|
include_directories (SYSTEM "${PROJECT_SOURCE_DIR}/../lib/polarssl/include")
|
2013-12-10 16:39:20 -05:00
|
|
|
|
2014-01-23 14:03:49 -05:00
|
|
|
set(FOLDERS OSSupport HTTPServer Items Blocks Protocol Generating)
|
2014-03-28 11:42:32 -04:00
|
|
|
set(FOLDERS ${FOLDERS} WorldStorage Mobs Entities Simulator UI BlockEntities Generating/Prefabs)
|
2013-12-10 18:20:39 -05:00
|
|
|
|
2013-12-10 13:41:43 -05:00
|
|
|
|
2013-12-28 08:42:11 -05:00
|
|
|
if (NOT MSVC)
|
2014-01-23 13:41:08 -05:00
|
|
|
|
2014-03-28 11:42:32 -04:00
|
|
|
# Bindings need to reference other folders, so they are done here instead
|
2014-01-23 13:41:08 -05:00
|
|
|
|
2014-03-28 11:42:32 -04:00
|
|
|
# lib dependencies are not included
|
2014-01-23 13:41:08 -05:00
|
|
|
|
2014-01-25 08:25:43 -05:00
|
|
|
set(BINDING_DEPENDECIES
|
2014-03-15 09:45:26 -04:00
|
|
|
tolua
|
2014-01-25 08:25:43 -05:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Bindings/virtual_method_hooks.lua
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Bindings/AllToLua.pkg
|
|
|
|
Bindings/LuaFunctions.h
|
2014-02-10 17:23:04 -05:00
|
|
|
Bindings/LuaWindow.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Bindings/Plugin.h
|
|
|
|
Bindings/PluginLua.h
|
2014-02-10 17:23:04 -05:00
|
|
|
Bindings/PluginManager.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Bindings/WebPlugin.h
|
2014-02-10 17:23:04 -05:00
|
|
|
BiomeDef.h
|
|
|
|
BlockArea.h
|
|
|
|
BlockEntities/BlockEntity.h
|
|
|
|
BlockEntities/BlockEntityWithItems.h
|
|
|
|
BlockEntities/ChestEntity.h
|
|
|
|
BlockEntities/DispenserEntity.h
|
|
|
|
BlockEntities/DropSpenserEntity.h
|
|
|
|
BlockEntities/DropperEntity.h
|
|
|
|
BlockEntities/FurnaceEntity.h
|
|
|
|
BlockEntities/HopperEntity.h
|
|
|
|
BlockEntities/JukeboxEntity.h
|
|
|
|
BlockEntities/NoteEntity.h
|
|
|
|
BlockEntities/SignEntity.h
|
2014-02-19 08:45:09 -05:00
|
|
|
BlockEntities/MobHeadEntity.h
|
2014-03-07 05:44:16 -05:00
|
|
|
BlockEntities/FlowerPotEntity.h
|
2014-01-25 08:25:43 -05:00
|
|
|
BlockID.h
|
2014-02-10 17:23:04 -05:00
|
|
|
BoundingBox.h
|
2014-01-25 08:25:43 -05:00
|
|
|
ChatColor.h
|
2014-02-10 17:23:04 -05:00
|
|
|
ChunkDef.h
|
2014-01-25 08:25:43 -05:00
|
|
|
ClientHandle.h
|
2014-02-10 17:23:04 -05:00
|
|
|
CraftingRecipes.h
|
|
|
|
Cuboid.h
|
|
|
|
Defines.h
|
|
|
|
Enchantments.h
|
|
|
|
Entities/Effects.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Entities/Entity.h
|
|
|
|
Entities/Floater.h
|
|
|
|
Entities/Pawn.h
|
2014-02-18 06:37:45 -05:00
|
|
|
Entities/Painting.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Entities/Pickup.h
|
2014-02-10 17:23:04 -05:00
|
|
|
Entities/Player.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Entities/ProjectileEntity.h
|
2014-04-26 20:58:06 -04:00
|
|
|
Entities/ProjectileArrow.h
|
|
|
|
Entities/ProjectileEgg.h
|
|
|
|
Entities/ProjectileEnderPearl.h
|
|
|
|
Entities/ProjectileExpBottle.h
|
|
|
|
Entities/ProjectileSnowball.h
|
|
|
|
Entities/ProjectileFireCharge.h
|
|
|
|
Entities/ProjectileFirework.h
|
|
|
|
Entities/ProjectileGhastFireball.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Entities/TNTEntity.h
|
2014-03-14 19:43:38 -04:00
|
|
|
Entities/ExpOrb.h
|
2014-03-14 21:45:25 -04:00
|
|
|
Entities/HangingEntity.h
|
|
|
|
Entities/ItemFrame.h
|
2014-02-10 17:23:04 -05:00
|
|
|
Generating/ChunkDesc.h
|
|
|
|
Group.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Inventory.h
|
|
|
|
Item.h
|
|
|
|
ItemGrid.h
|
2014-02-10 17:23:04 -05:00
|
|
|
Mobs/Monster.h
|
|
|
|
OSSupport/File.h
|
|
|
|
Root.h
|
|
|
|
Server.h
|
|
|
|
StringUtils.h
|
2014-01-25 08:25:43 -05:00
|
|
|
Tracer.h
|
|
|
|
UI/Window.h
|
2014-03-11 10:01:17 -04:00
|
|
|
Vector3.h
|
2014-02-10 17:23:04 -05:00
|
|
|
WebAdmin.h
|
|
|
|
World.h
|
2014-01-25 08:25:43 -05:00
|
|
|
)
|
2014-01-23 13:41:08 -05:00
|
|
|
|
2014-01-23 14:00:36 -05:00
|
|
|
include_directories(Bindings)
|
|
|
|
include_directories(.)
|
|
|
|
|
2014-01-23 13:41:08 -05:00
|
|
|
ADD_CUSTOM_COMMAND(
|
|
|
|
# add any new generated bindings here
|
|
|
|
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.cpp ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/Bindings.h
|
|
|
|
|
|
|
|
# command execuded to regerate bindings
|
2014-01-23 14:00:36 -05:00
|
|
|
COMMAND tolua -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
|
2014-01-23 13:41:08 -05:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/
|
|
|
|
|
|
|
|
# add any new generation dependencies here
|
|
|
|
DEPENDS ${BINDING_DEPENDECIES}
|
|
|
|
)
|
2014-01-23 14:00:36 -05:00
|
|
|
#add cpp files here
|
2014-02-10 17:23:04 -05:00
|
|
|
add_library(Bindings
|
|
|
|
Bindings/Bindings
|
2014-03-02 04:12:29 -05:00
|
|
|
Bindings/DeprecatedBindings
|
2014-02-10 17:23:04 -05:00
|
|
|
Bindings/LuaChunkStay
|
|
|
|
Bindings/LuaState
|
|
|
|
Bindings/LuaWindow
|
|
|
|
Bindings/ManualBindings
|
|
|
|
Bindings/Plugin
|
|
|
|
Bindings/PluginLua
|
|
|
|
Bindings/PluginManager
|
|
|
|
Bindings/WebPlugin
|
|
|
|
)
|
2014-01-23 14:00:36 -05:00
|
|
|
|
|
|
|
target_link_libraries(Bindings lua sqlite tolualib)
|
2014-01-23 13:41:08 -05:00
|
|
|
|
2014-01-25 08:35:04 -05:00
|
|
|
#clear file
|
|
|
|
file(WRITE ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/BindingDependecies.txt)
|
|
|
|
foreach(dependecy ${BINDING_DEPENDECIES})
|
|
|
|
#write each dependecy on a seperate line
|
|
|
|
file(APPEND ${CMAKE_CURRENT_SOURCE_DIR}/Bindings/BindingDependecies.txt "${dependecy}\n")
|
|
|
|
endforeach()
|
|
|
|
|
2014-01-23 14:06:42 -05:00
|
|
|
set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "Bindings.cpp Bindings.h")
|
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
foreach(folder ${FOLDERS})
|
|
|
|
add_subdirectory(${folder})
|
|
|
|
endforeach(folder)
|
2013-12-19 10:07:45 -05:00
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
file(GLOB SOURCE
|
|
|
|
"*.cpp"
|
2014-04-25 12:56:15 -04:00
|
|
|
"*.h"
|
2013-12-19 10:07:45 -05:00
|
|
|
)
|
2013-12-19 19:22:06 -05:00
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
list(REMOVE_ITEM SOURCE "${PROJECT_SOURCE_DIR}/StackWalker.cpp" "${PROJECT_SOURCE_DIR}/LeakFinder.cpp")
|
2013-12-19 10:07:45 -05:00
|
|
|
|
2014-01-13 11:15:34 -05:00
|
|
|
# If building a windows version, but not using MSVC, add the resources directly to the makefile:
|
|
|
|
if (WIN32)
|
|
|
|
FILE(GLOB ResourceFiles
|
|
|
|
"Resources/*.rc"
|
|
|
|
)
|
|
|
|
list(APPEND SOURCE "${ResourceFiles}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
else ()
|
2014-03-28 11:42:32 -04:00
|
|
|
# MSVC-specific handling: Put all files into one project, separate by the folders:
|
2013-12-19 10:07:45 -05:00
|
|
|
|
2014-01-12 11:20:14 -05:00
|
|
|
# Generate the Bindings if they don't exist:
|
|
|
|
if (NOT EXISTS "${PROJECT_SOURCE_DIR}/Bindings/Bindings.cpp")
|
|
|
|
message("Bindings.cpp not found, generating now")
|
|
|
|
set(tolua_executable ${PROJECT_SOURCE_DIR}/Bindings/tolua++.exe)
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${tolua_executable} -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/Bindings
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2014-03-28 11:42:32 -04:00
|
|
|
# Get all files in this folder:
|
|
|
|
file(GLOB_RECURSE SOURCE
|
|
|
|
"*.cpp"
|
|
|
|
"*.h"
|
|
|
|
"*.pkg"
|
|
|
|
)
|
|
|
|
source_group("" FILES ${SOURCE})
|
|
|
|
|
2014-01-13 11:15:34 -05:00
|
|
|
# Add all subfolders as solution-folders:
|
|
|
|
list(APPEND FOLDERS "Resources")
|
2014-01-23 14:03:49 -05:00
|
|
|
list(APPEND FOLDERS "Bindings")
|
2013-12-26 08:54:46 -05:00
|
|
|
function(includefolder PATH)
|
|
|
|
FILE(GLOB FOLDER_FILES
|
|
|
|
"${PATH}/*.cpp"
|
|
|
|
"${PATH}/*.h"
|
2014-01-13 11:15:34 -05:00
|
|
|
"${PATH}/*.rc"
|
2014-02-09 10:22:49 -05:00
|
|
|
"${PATH}/*.pkg"
|
2013-12-26 08:54:46 -05:00
|
|
|
)
|
2014-03-28 11:42:32 -04:00
|
|
|
string(REPLACE "/" "\\" PROJECT_PATH ${PATH})
|
|
|
|
source_group("${PROJECT_PATH}" FILES ${FOLDER_FILES})
|
2013-12-26 08:54:46 -05:00
|
|
|
endfunction(includefolder)
|
2013-12-19 10:07:45 -05:00
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
foreach(folder ${FOLDERS})
|
|
|
|
includefolder(${folder})
|
|
|
|
endforeach(folder)
|
2013-12-19 19:31:52 -05:00
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
include_directories("${PROJECT_SOURCE_DIR}")
|
2013-12-20 11:05:12 -05:00
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
# Precompiled headers (1st part)
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(
|
2013-12-27 05:51:08 -05:00
|
|
|
Globals.cpp PROPERTIES COMPILE_FLAGS "/Yc\"Globals.h\""
|
|
|
|
)
|
|
|
|
# CMake cannot "remove" the precompiled header flags, so we use a dummy precompiled header compatible with just this one file:
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(
|
|
|
|
Bindings/Bindings.cpp PROPERTIES COMPILE_FLAGS "/Yc\"string.h\" /Fp\"$(IntDir)/Bindings.pch\""
|
|
|
|
)
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(
|
|
|
|
"StackWalker.cpp LeakFinder.h" PROPERTIES COMPILE_FLAGS "/Yc\"Globals.h\""
|
2013-12-26 08:54:46 -05:00
|
|
|
)
|
2014-01-13 11:15:34 -05:00
|
|
|
list(APPEND SOURCE "Resources/MCServer.rc")
|
2014-01-24 04:24:24 -05:00
|
|
|
|
|
|
|
# Make MSVC generate the PDB files even for the release build:
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Zi")
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /Zi")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /DEBUG")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} /DEBUG")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS_RELEASE "${CMAKE_MODULE_LINKER_FLAGS_RELEASE} /DEBUG")
|
2013-12-19 10:07:45 -05:00
|
|
|
endif()
|
2013-12-10 13:41:43 -05:00
|
|
|
|
2013-12-28 08:42:11 -05:00
|
|
|
set(EXECUTABLE MCServer)
|
2013-12-19 19:22:06 -05:00
|
|
|
|
|
|
|
add_executable(${EXECUTABLE} ${SOURCE})
|
2013-12-10 13:41:43 -05:00
|
|
|
|
2013-12-28 08:42:11 -05:00
|
|
|
|
2014-01-16 12:33:28 -05:00
|
|
|
# Output the executable into the $/MCServer folder, so that it has access to external resources:
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/MCServer)
|
|
|
|
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_SOURCE_DIR}/MCServer
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/MCServer
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_DEBUGPROFILE ${CMAKE_SOURCE_DIR}/MCServer
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_RELEASEPROFILE ${CMAKE_SOURCE_DIR}/MCServer
|
|
|
|
)
|
2013-12-28 08:42:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
# Make the debug executable have a "_debug" suffix
|
|
|
|
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES DEBUG_POSTFIX "_debug")
|
|
|
|
|
2014-01-14 03:32:43 -05:00
|
|
|
# Make the profiled executables have a "_profile" postfix
|
|
|
|
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES DEBUGPROFILE_POSTFIX "_debug_profile")
|
|
|
|
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES RELEASEPROFILE_POSTFIX "_profile")
|
|
|
|
|
2013-12-26 08:54:46 -05:00
|
|
|
|
2013-12-27 05:51:08 -05:00
|
|
|
# Precompiled headers (2nd part)
|
2013-12-28 08:42:11 -05:00
|
|
|
if (MSVC)
|
2013-12-26 08:54:46 -05:00
|
|
|
SET_TARGET_PROPERTIES(
|
2013-12-27 05:51:08 -05:00
|
|
|
${EXECUTABLE} PROPERTIES COMPILE_FLAGS "/Yu\"Globals.h\""
|
|
|
|
OBJECT_DEPENDS "$(IntDir)/$(TargetName.pch)"
|
2013-12-26 08:54:46 -05:00
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
2013-12-28 08:42:11 -05:00
|
|
|
if (NOT MSVC)
|
2013-12-26 08:54:46 -05:00
|
|
|
target_link_libraries(${EXECUTABLE} OSSupport HTTPServer Bindings Items Blocks)
|
2014-03-28 17:04:59 -04:00
|
|
|
target_link_libraries(${EXECUTABLE} Protocol Generating Generating_Prefabs WorldStorage)
|
2013-12-26 08:54:46 -05:00
|
|
|
target_link_libraries(${EXECUTABLE} Mobs Entities Simulator UI BlockEntities)
|
|
|
|
endif ()
|
2013-12-27 05:51:08 -05:00
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(${EXECUTABLE} expat tolualib ws2_32.lib Psapi.lib)
|
|
|
|
endif()
|
2014-01-22 16:19:33 -05:00
|
|
|
target_link_libraries(${EXECUTABLE} md5 luaexpat iniFile jsoncpp polarssl zlib lua sqlite)
|