mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +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
26 lines
615 B
CMake
26 lines
615 B
CMake
include_directories(${Boost_INCLUDE_DIRS} ${CMAKE_HOME_DIRECTORY} ${CMAKE_HOME_DIRECTORY}/include ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/lib)
|
|
|
|
set(emptyAI_SRCS
|
|
StdInc.cpp
|
|
|
|
CEmptyAI.cpp
|
|
exp_funcs.cpp
|
|
)
|
|
|
|
set(emptyAI_HEADERS
|
|
StdInc.h
|
|
|
|
CEmptyAI.h
|
|
)
|
|
|
|
assign_source_group(${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
|
|
add_library(EmptyAI SHARED ${emptyAI_SRCS} ${emptyAI_HEADERS})
|
|
target_link_libraries(EmptyAI vcmi)
|
|
|
|
vcmi_set_output_dir(EmptyAI "AI")
|
|
|
|
set_target_properties(EmptyAI PROPERTIES ${PCH_PROPERTIES})
|
|
|
|
install(TARGETS EmptyAI RUNTIME DESTINATION ${AI_LIB_DIR} LIBRARY DESTINATION ${AI_LIB_DIR})
|