You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
CMake
36 lines
1.1 KiB
CMake
project(masterserver)
|
|
|
|
#set(CMAKE_CXX_STANDARD 14)
|
|
add_definitions(-std=gnu++14)
|
|
|
|
find_package(LuaJit REQUIRED)
|
|
find_package(OpenSSL REQUIRED)
|
|
|
|
include_directories("./" ${LUAJIT_INCLUDE_DIR} ${CMAKE_SOURCE_DIR}/extern/sol ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(SOURCE_FILES main.cpp MasterServer.cpp MasterServer.hpp RestServer.cpp RestServer.hpp AdminRest.cpp)
|
|
|
|
add_executable(masterserver ${SOURCE_FILES})
|
|
target_link_libraries(masterserver ${RakNet_LIBRARY} ${LUAJIT_LIBRARY} ${OPENSSL_LIBRARIES} components)
|
|
|
|
option(BUILD_MASTER_TEST "build master server test program" OFF)
|
|
|
|
if(BUILD_MASTER_TEST)
|
|
add_executable(ServerTest ServerTest.cpp)
|
|
target_link_libraries(ServerTest ${RakNet_LIBRARY} components)
|
|
endif()
|
|
|
|
if (UNIX)
|
|
# Fix for not visible pthreads functions for linker with glibc 2.15
|
|
if(NOT APPLE)
|
|
target_link_libraries(masterserver ${CMAKE_THREAD_LIBS_INIT})
|
|
if(BUILD_MASTER_TEST)
|
|
target_link_libraries(ServerTest ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
endif(NOT APPLE)
|
|
endif(UNIX)
|
|
|
|
if(WIN32)
|
|
target_link_libraries(masterserver wsock32)
|
|
endif(WIN32)
|