2012-07-01 17:27:41 +03:00
|
|
|
set(emptyAI_SRCS
|
2017-06-29 01:03:37 +02:00
|
|
|
StdInc.cpp
|
|
|
|
|
|
|
|
CEmptyAI.cpp
|
|
|
|
exp_funcs.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(emptyAI_HEADERS
|
|
|
|
StdInc.h
|
|
|
|
|
|
|
|
CEmptyAI.h
|
2012-07-01 17:27:41 +03:00
|
|
|
)
|
|
|
|
|
2017-08-15 20:17:00 +02:00
|
|
|
assign_source_group(${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
|
2017-06-29 01:03:37 +02:00
|
|
|
add_library(EmptyAI SHARED ${emptyAI_SRCS} ${emptyAI_HEADERS})
|
2019-03-20 21:58:15 +02:00
|
|
|
target_include_directories(EmptyAI PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
2022-07-27 11:23:37 +02:00
|
|
|
target_link_libraries(EmptyAI PRIVATE ${VCMI_LIB_TARGET})
|
2012-10-05 15:38:17 +03:00
|
|
|
|
2017-07-04 22:46:49 +02:00
|
|
|
vcmi_set_output_dir(EmptyAI "AI")
|
2022-06-16 22:02:36 +02:00
|
|
|
enable_pch(EmptyAI)
|
2017-08-15 20:17:00 +02:00
|
|
|
|
2021-03-12 12:31:05 +02:00
|
|
|
install(TARGETS EmptyAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR} OPTIONAL)
|