mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
e8354908c3
Minor changes: * default log level set to trace * LOG_TRACE raii guardian lifetime will last till the end of block * compile fixes * minor refactorings
26 lines
633 B
CMake
26 lines
633 B
CMake
project(vcmiserver)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(${CMAKE_HOME_DIRECTORY} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
set(server_SRCS
|
|
CGameHandler.cpp
|
|
CQuery.cpp
|
|
CVCMIServer.cpp
|
|
NetPacksServer.cpp
|
|
)
|
|
|
|
if(WIN32)
|
|
add_executable(vcmiserver WIN32 ${server_SRCS})
|
|
else()
|
|
add_executable(vcmiserver ${server_SRCS})
|
|
endif()
|
|
|
|
target_link_libraries(vcmiserver vcmi ${Boost_LIBRARIES} ${RT_LIB} ${DL_LIB})
|
|
|
|
if (NOT APPLE) # Already inside vcmiclient bundle
|
|
install(TARGETS vcmiserver DESTINATION ${BIN_DIR})
|
|
endif()
|
|
|