mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
c6e51852d0
"Client process -> shared VCMI lib <- Server process" is turned into "shared Client-VCMI lib -> process <- static Server-VCMI lib" - adds lib_client and lib_server targets that define distinct namespaces - lib_client is a dynamic library which is shared with AI libs, lib_server is static
24 lines
520 B
CMake
24 lines
520 B
CMake
set(emptyAI_SRCS
|
|
StdInc.cpp
|
|
|
|
CEmptyAI.cpp
|
|
exp_funcs.cpp
|
|
)
|
|
|
|
set(emptyAI_HEADERS
|
|
StdInc.h
|
|
|
|
CEmptyAI.h
|
|
)
|
|
|
|
assign_source_group(${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
add_library(EmptyAI SHARED ${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
target_include_directories(EmptyAI PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(EmptyAI PRIVATE ${VCMI_LIB_TARGET})
|
|
|
|
vcmi_set_output_dir(EmptyAI "AI")
|
|
enable_pch(EmptyAI)
|
|
|
|
install(TARGETS EmptyAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR} OPTIONAL)
|