mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
95034b9fa0
- Fixed compilation error (VCAI ResourceSet logging)
24 lines
601 B
CMake
24 lines
601 B
CMake
project(VCAI)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS} ${CMAKE_HOME_DIRECTORY} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib ${CMAKE_HOME_DIRECTORY}/AI/FuzzyLite)
|
|
|
|
set(VCAI_SRCS
|
|
StdInc.cpp
|
|
VCAI.cpp
|
|
Goals.cpp
|
|
AIUtility.cpp
|
|
main.cpp
|
|
Fuzzy.cpp
|
|
)
|
|
|
|
add_library(VCAI SHARED ${VCAI_SRCS})
|
|
target_link_libraries(VCAI FuzzyLite_lib vcmi)
|
|
|
|
set_target_properties(VCAI PROPERTIES ${PCH_PROPERTIES})
|
|
cotire(VCAI)
|
|
|
|
if (NOT APPLE) # Already inside vcmiclient bundle
|
|
install(TARGETS VCAI DESTINATION ${AI_LIB_DIR})
|
|
endif()
|