2012-07-01 14:27:41 +00:00
|
|
|
set(emptyAI_SRCS
|
2017-06-29 02:03:37 +03:00
|
|
|
CEmptyAI.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(emptyAI_HEADERS
|
|
|
|
StdInc.h
|
|
|
|
|
|
|
|
CEmptyAI.h
|
2012-07-01 14:27:41 +00:00
|
|
|
)
|
|
|
|
|
2024-02-11 00:00:58 +02:00
|
|
|
if(NOT ENABLE_STATIC_LIBS)
|
2023-02-28 13:08:58 +03:00
|
|
|
list(APPEND emptyAI_SRCS main.cpp StdInc.cpp)
|
|
|
|
endif()
|
2017-08-15 21:17:00 +03:00
|
|
|
assign_source_group(${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
|
2024-02-11 00:00:58 +02:00
|
|
|
if(ENABLE_STATIC_LIBS)
|
2023-02-28 13:08:58 +03:00
|
|
|
add_library(EmptyAI STATIC ${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
else()
|
|
|
|
add_library(EmptyAI SHARED ${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
install(TARGETS EmptyAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR})
|
|
|
|
endif()
|
|
|
|
|
2019-03-20 20:58:15 +01:00
|
|
|
target_include_directories(EmptyAI PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
2024-02-11 20:38:24 +02:00
|
|
|
target_link_libraries(EmptyAI PRIVATE vcmi)
|
2012-10-05 12:38:17 +00:00
|
|
|
|
2017-07-04 23:46:49 +03:00
|
|
|
vcmi_set_output_dir(EmptyAI "AI")
|
2022-06-17 04:02:36 +08:00
|
|
|
enable_pch(EmptyAI)
|