mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
fb19a3a068
This make it easier to use project with newer CMake and Qt Creator. I decided against using GLOB since we don't rename files that much.
29 lines
661 B
CMake
29 lines
661 B
CMake
project(stupidAI)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS} ${CMAKE_HOME_DIRECTORY} ${CMAKE_HOME_DIRECTORY}/include ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
|
|
set(stupidAI_SRCS
|
|
StdInc.cpp
|
|
|
|
main.cpp
|
|
StupidAI.cpp
|
|
)
|
|
|
|
set(stupidAI_HEADERS
|
|
StdInc.h
|
|
|
|
StupidAI.h
|
|
)
|
|
|
|
add_library(StupidAI SHARED ${stupidAI_SRCS} ${stupidAI_HEADERS})
|
|
target_link_libraries(StupidAI vcmi)
|
|
|
|
set_target_properties(StupidAI PROPERTIES ${PCH_PROPERTIES})
|
|
cotire(StupidAI)
|
|
|
|
if (NOT APPLE) # Already inside vcmiclient bundle
|
|
install(TARGETS StupidAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR})
|
|
endif()
|
|
|