2012-07-15 19:05:41 +03:00
|
|
|
project(vcmiserver)
|
2012-07-01 17:27:41 +03:00
|
|
|
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
|
2013-04-20 14:34:01 +03:00
|
|
|
CQuery.cpp
|
2012-07-01 17:27:41 +03:00
|
|
|
CVCMIServer.cpp
|
|
|
|
NetPacksServer.cpp
|
|
|
|
)
|
|
|
|
|
2012-12-01 09:30:52 +03:00
|
|
|
if(WIN32)
|
2012-07-15 19:05:41 +03:00
|
|
|
add_executable(vcmiserver WIN32 ${server_SRCS})
|
2012-12-01 09:30:52 +03:00
|
|
|
else()
|
|
|
|
add_executable(vcmiserver ${server_SRCS})
|
|
|
|
endif()
|
2012-07-01 17:27:41 +03:00
|
|
|
|
2012-07-19 21:52:44 +03:00
|
|
|
target_link_libraries(vcmiserver vcmi ${Boost_LIBRARIES} ${RT_LIB} ${DL_LIB})
|
2012-10-05 15:38:17 +03:00
|
|
|
|
2012-12-01 09:30:52 +03:00
|
|
|
if (NOT APPLE) # Already inside vcmiclient bundle
|
|
|
|
install(TARGETS vcmiserver DESTINATION ${BIN_DIR})
|
|
|
|
endif()
|
2012-10-05 15:38:17 +03:00
|
|
|
|