mirror of
https://github.com/vcmi/vcmi.git
synced 2025-02-19 19:10:20 +02:00
- fixes to CMakeLists - vcmi can be compiled and started with cmake - gcc\clang warnings fixes
13 lines
299 B
CMake
13 lines
299 B
CMake
project(emptyAI)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(${CMAKE_HOME_DIRECTORY} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
|
|
set(emptyAI_SRCS
|
|
CEmptyAI.cpp
|
|
exp_funcs.cpp
|
|
)
|
|
|
|
add_library(EmptyAI SHARED ${emptyAI_SRCS})
|
|
target_link_libraries(EmptyAI vcmi)
|