mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 05:57:45 +00:00
63 lines
2.2 KiB
CMake
63 lines
2.2 KiB
CMake
cmake_policy( SET CMP0014 NEW )
|
|
cmake_minimum_required( VERSION 3.0.2 )
|
|
project( Sapphire )
|
|
|
|
set( CMAKE_MODULE_PATH
|
|
${CMAKE_MODULE_PATH}
|
|
${CMAKE_SOURCE_DIR}/cmake )
|
|
|
|
#####################################
|
|
# Copy needed files to build-folder #
|
|
#####################################
|
|
add_custom_target( copy_runtime_files ALL
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/config ${CMAKE_BINARY_DIR}/bin/config
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/sql ${CMAKE_BINARY_DIR}/bin/sql
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/web ${CMAKE_BINARY_DIR}/bin/web
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/sql_import.sh ${CMAKE_BINARY_DIR}/bin/sql_import.sh )
|
|
|
|
file( COPY ${CMAKE_SOURCE_DIR}/data DESTINATION ${CMAKE_BINARY_DIR}/bin )
|
|
|
|
######################################
|
|
# Dependencies and compiler settings #
|
|
######################################
|
|
include( "cmake/paths.cmake" )
|
|
include( "cmake/compiler.cmake" )
|
|
|
|
##############################
|
|
# Git #
|
|
##############################
|
|
include( GetGitRevisionDescription )
|
|
get_git_head_revision( GIT_REFSPEC GIT_SHA1 )
|
|
git_describe( VERSION --all --dirty=-d )
|
|
configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/src/common/Version.cpp.in"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/src/common/Version.cpp" @ONLY )
|
|
|
|
##############################
|
|
# Mysql #
|
|
##############################
|
|
find_package( MySQL )
|
|
|
|
##############################
|
|
# Dependencies #
|
|
##############################
|
|
add_subdirectory( "deps/zlib" )
|
|
add_subdirectory( "deps/MySQL" )
|
|
add_subdirectory( "deps/datReader" )
|
|
add_subdirectory( "deps/datReaderPs3" )
|
|
add_subdirectory( "deps/mysqlConnector" )
|
|
add_subdirectory( "deps/recastnavigation" )
|
|
|
|
##############################
|
|
# Main Sapphire Components #
|
|
##############################
|
|
add_subdirectory( "src/common" )
|
|
add_subdirectory( "src/api" )
|
|
add_subdirectory( "src/lobby" )
|
|
add_subdirectory( "src/world" )
|
|
add_subdirectory( "src/scripts" )
|
|
add_subdirectory( "src/dbm" )
|
|
|
|
##############################
|
|
# Tools #
|
|
##############################
|
|
add_subdirectory( "src/tools" )
|