mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
40af43c46e
- macOS: RPATH-related code all removed or disabled - macOS: new osx/CMakeLists.txt to run some install-code running after all subdirectories - Assets copying into the runtime output directory implemented for Mac and Linux development
43 lines
990 B
CMake
43 lines
990 B
CMake
include_directories(${Boost_INCLUDE_DIRS} ${CMAKE_HOME_DIRECTORY} ${CMAKE_HOME_DIRECTORY}/include ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
|
|
set(battleAI_SRCS
|
|
StdInc.cpp
|
|
|
|
AttackPossibility.cpp
|
|
BattleAI.cpp
|
|
common.cpp
|
|
EnemyInfo.cpp
|
|
main.cpp
|
|
PotentialTargets.cpp
|
|
StackWithBonuses.cpp
|
|
ThreatMap.cpp
|
|
)
|
|
|
|
set(battleAI_HEADERS
|
|
StdInc.h
|
|
|
|
AttackPossibility.h
|
|
BattleAI.h
|
|
common.h
|
|
EnemyInfo.h
|
|
PotentialTargets.h
|
|
StackWithBonuses.h
|
|
ThreatMap.h
|
|
)
|
|
|
|
assign_source_group(${battleAI_SRCS} ${battleAI_HEADERS})
|
|
|
|
if(ANDROID) # android compiles ai libs into main lib directly, so we skip this library and just reuse sources list
|
|
return()
|
|
endif()
|
|
|
|
add_library(BattleAI SHARED ${battleAI_SRCS} ${battleAI_HEADERS})
|
|
target_link_libraries(BattleAI vcmi)
|
|
|
|
vcmi_set_output_dir(BattleAI "AI")
|
|
|
|
set_target_properties(BattleAI PROPERTIES ${PCH_PROPERTIES})
|
|
cotire(BattleAI)
|
|
|
|
install(TARGETS BattleAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR})
|