mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-21 17:17:06 +02:00
35 lines
754 B
CMake
35 lines
754 B
CMake
set(serverapp_SRCS
|
|
StdInc.cpp
|
|
EntryPoint.cpp
|
|
)
|
|
|
|
set(serverapp_HEADERS
|
|
StdInc.h
|
|
)
|
|
|
|
assign_source_group(${serverapp_SRCS} ${serverapp_HEADERS})
|
|
add_executable(vcmiserver ${serverapp_SRCS} ${serverapp_HEADERS})
|
|
set(serverapp_LIBS vcmi)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES FreeBSD OR HAIKU)
|
|
set(serverapp_LIBS execinfo ${serverapp_LIBS})
|
|
endif()
|
|
target_link_libraries(vcmiserver PRIVATE ${serverapp_LIBS} minizip::minizip vcmiservercommon)
|
|
|
|
target_include_directories(vcmiserver
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
if(WIN32)
|
|
set_target_properties(vcmiserver
|
|
PROPERTIES
|
|
OUTPUT_NAME "VCMI_server"
|
|
PROJECT_LABEL "VCMI_server"
|
|
)
|
|
endif()
|
|
|
|
vcmi_set_output_dir(vcmiserver "")
|
|
enable_pch(vcmiserver)
|
|
|
|
install(TARGETS vcmiserver DESTINATION ${BIN_DIR})
|