mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00

Going forward it will be alot easier to maintain. TODO: simplify path definitions Conflicts: src/servers/Server_Lobby/CMakeLists.txt src/servers/Server_REST/CMakeLists.txt src/servers/Server_Zone/CMakeLists.txt
15 lines
516 B
CMake
15 lines
516 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project (Sapphire_root)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR})
|
|
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR})
|
|
|
|
set(PROJECT_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
include_directories("${PROJECT_INCLUDE_DIR}")
|
|
include_directories("${PROJECT_SOURCE_DIR}")
|
|
|
|
add_subdirectory(${PROJECT_SOURCE_DIR}/Server_Common)
|
|
add_subdirectory(${PROJECT_SOURCE_DIR}/Server_Lobby)
|
|
add_subdirectory(${PROJECT_SOURCE_DIR}/Server_REST)
|
|
add_subdirectory(${PROJECT_SOURCE_DIR}/Server_Zone)
|