mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-28 03:57:02 +02:00
8f936cd34d
- icons config for towns and creatures
13 lines
299 B
CMake
13 lines
299 B
CMake
project(battleAI)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(${CMAKE_HOME_DIRECTORY} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
|
|
set(battleAI_SRCS
|
|
BattleAI.cpp
|
|
main.cpp
|
|
)
|
|
|
|
add_library(BattleAI SHARED ${battleAI_SRCS})
|
|
target_link_libraries(BattleAI vcmi)
|